Add mcl_util.file_exists() function

This commit is contained in:
cora 2022-10-06 07:44:59 +02:00
parent 57b5d13edf
commit f47674b9a7
1 changed files with 9 additions and 0 deletions

View File

@ -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
--[[