Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在这里找到,如何使用纯 Lua 代码创建一个新文件。下一个片段理论上应该这样做:
file = io.open("test.txt", "w") file:write("Hello World") file:close()
但是,我在源代码文件的文件夹中找不到创建的文件。它在哪里保存文件 - 如果它甚至创建一个新文件?
如果不是,那它的方法是什么?
它将使用进程当前工作目录 (CWD),当您运行脚本时,该目录将转到您的 shell/环境所在的任何位置。