Browse Source

fobject:read() now supports reading until a specific character

pull/1/head
XeonSquared 4 years ago
parent
commit
1f66ef4f1c
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      module/fs.lua

+ 10
- 0
module/fs.lua View File

@@ -42,6 +42,16 @@ local function fread(self,length)
rstr = rstr .. lstr
until rstr:len() == length or lstr == ""
return rstr
elseif type(length) == "string" then
local buf = ""
if length == "*l" then
length = "\n"
end
repeat
local rb = fsmounts[self.fs].read(self.fid,1) or ""
buf = buf .. rb
until buf:match(length) or rb == ""
return buf:match("(.*)"..length)
end
return fsmounts[self.fs].read(self.fid,length)
end


Loading…
Cancel
Save