bool result = doesFileExist(string file)
Проверяет файл на существование. Аналог опкода CLEO 0AAB.
string file
путь
bool result
результат выполнения
local path = getWorkingDirectory() .. "\\test.lua"
if doesFileExist(path) then
print("The file exist")
else
print("The file does not exist")
end