Lua,指定 io.open 创建文件的位置?

我该如何将由 io.open 创建的文件放在 lua 文件所在的文件夹之外的某个地方。

local test = io.open("Test.html", "w")
test:write("Hello world.")
test:close()
点赞
用户1128038
用户1128038

你只需要提供完整路径(或相对路径),而不仅仅是文件名。

local test = io.open("c:\temp\Test.html", "w")
2016-05-19 20:39:38