1
0
Fork 4

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

Esse commit está contido em:
Izaya 2019-11-19 21:38:08 +11:00
commit 1f66ef4f1c
1 arquivos alterados com 10 adições e 0 exclusões

Ver arquivo

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