Add mfs library

This commit is contained in:
v
2020-12-28 09:57:39 +00:00
parent e49fed35eb
commit d6516eaf40
2 changed files with 34 additions and 0 deletions

22
mfs/lib/mfs.lua Normal file
View File

@@ -0,0 +1,22 @@
local mfs={}
function mfs.read(x)
local f=fs.open(x,"r")
if not f then return nil end
local i=f.readAll()
f.close()
return i
end
function mfs.write(x,v)
local f=fs.open(x,"w")
f.write(v)
f.close()
end
function mfs.mmkdir(x)
if not fs.exists(x) then
fs.makeDir(x)
end
end