我有读取和写入txt文件的lua函数,每次lua都在新行中写入而不是替换之前的写入。我该怎么做?在我写作之前,我是否需要每次都读入并获取第1行?
这是我的代码:
local function FileOutput(name)
local f = io.open(name, "w+")
local meta = {
__call = function(t, str) f:write(str .. '\n') end,
__gc = function() f:close() end
}
return setmetatable({}, meta)
end
function writeRec()
LOG("writing")
local testfile = FileOutput(getScriptDirectory()..'/textOutput.txt')
testfile('oh yes!')
testfile = nil
end