Модуль:FilePath
Материал из Space Station 14 Вики
Для документации этого модуля может быть создана страница Модуль:FilePath/doc
local p = {} function p.getWindowsPath(frame) local filePath = frame.args[1] filePath = filePath:gsub('/', '\\') return filePath end function p.getOthersPath(frame) local filePath = frame.args[1] filePath = filePath:gsub('\\', '/') return filePath end return p