8 lines
No EOL
175 B
Lua
8 lines
No EOL
175 B
Lua
local utilities = {}
|
|
|
|
function utilities.file_exists(name)
|
|
local f=io.open(name,"r")
|
|
if f~=nil then io.close(f) return true else return false end
|
|
end
|
|
|
|
return utilities |