forked from VoxeLibre/VoxeLibre
Add mcl_util.file_exists() function
This commit is contained in:
parent
57b5d13edf
commit
f47674b9a7
|
@ -22,6 +22,15 @@ function table.update_nil(t, ...)
|
|||
return t
|
||||
end
|
||||
|
||||
function mcl_util.file_exists(name)
|
||||
local f = io.open(name)
|
||||
if not f then
|
||||
return false
|
||||
end
|
||||
f:close()
|
||||
return true
|
||||
end
|
||||
|
||||
-- Based on minetest.rotate_and_place
|
||||
|
||||
--[[
|
||||
|
|
Loading…
Reference in New Issue