xcompat/src/utilities.lua

8 lines
175 B
Lua
Raw Normal View History

2024-05-26 17:07:43 +02:00
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