gpt4 book ai didi

file - 在lua中创建一个临时文件

转载 作者:行者123 更新时间:2023-12-04 03:27:26 34 4
gpt4 key购买 nike

我查看了 LuaFileSystem 文档,并没有真正理解如何创建一个临时文件并写入其中。
另外,我不确定在哪里可以找到我创建的临时文件。在/tmp 中?

这是我的函数的样子:

do
function upload_file(web)

f = -- creates a temporary file
f:write(file.contents) -- writes the content of the file uploaded in the temp file
f:seek("set", 0) -- we go back at the beginning
s = f:read("*a") -- read it out
print (s) -- print it out
f:close() -- close it
end
end

最佳答案

标准Lua有两种解决方案:

  • io.tmpfile ,它返回一个临时文件的句柄。此文件以更新模式打开,并在程序结束时自动删除。
  • os.tmpname ,它返回一个带有可用于临时文件的文件名的字符串。该文件必须在使用前显式打开,并在不再需要时显式删除。
  • 关于file - 在lua中创建一个临时文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23360016/

    34 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com