Added current directory and rm to mfs
This commit is contained in:
parent
d46df8884b
commit
d3c46ace5f
@ -1,7 +1,20 @@
|
|||||||
local mfs={}
|
local mfs={}
|
||||||
|
local cd=""
|
||||||
|
function mfs.setcd(x)
|
||||||
|
if fs.exists(x) and fs.isDir(x) then
|
||||||
|
cd=x
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false,"No such directory "..x
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function mfs.getcd()
|
||||||
|
return cd
|
||||||
|
end
|
||||||
|
|
||||||
function mfs.read(x)
|
function mfs.read(x)
|
||||||
local f=fs.open(x,"r")
|
local f=fs.open(cd.."/"..x,"r")
|
||||||
if not f then return nil end
|
if not f then return nil end
|
||||||
local i=f.readAll()
|
local i=f.readAll()
|
||||||
f.close()
|
f.close()
|
||||||
@ -9,23 +22,27 @@ function mfs.read(x)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function mfs.write(x,v)
|
function mfs.write(x,v)
|
||||||
local f=fs.open(x,"w")
|
local f=fs.open(cd.."/"..x,"w")
|
||||||
f.write(v)
|
f.write(v)
|
||||||
f.close()
|
f.close()
|
||||||
end
|
end
|
||||||
|
|
||||||
function mfs.mmkdir(x)
|
function mfs.mmkdir(x)
|
||||||
if not fs.exists(x) then
|
if not fs.exists(cd.."/"..x) then
|
||||||
fs.makeDir(x)
|
fs.makeDir(cd.."/"..x)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function mfs.save(x,t)
|
function mfs.save(x,t)
|
||||||
mfs.write(x,textutils.serialize(t))
|
mfs.write(cd.."/"..x,textutils.serialize(t))
|
||||||
end
|
end
|
||||||
|
|
||||||
function mfs.load(x)
|
function mfs.load(x)
|
||||||
return textutils.unserialize(mfs.read(x) or "{}")
|
return textutils.unserialize(mfs.read(cd.."/"..x) or "{}")
|
||||||
|
end
|
||||||
|
|
||||||
|
function mfs.rm(x)
|
||||||
|
fs.delete(cd.."/"..x)
|
||||||
end
|
end
|
||||||
|
|
||||||
return mfs
|
return mfs
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
["version"] = "0.1.2",
|
["version"] = "0.1.3",
|
||||||
["dependencies"] = {
|
["dependencies"] = {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user