Lua没有生成输出文件

时间:2016-05-04 17:52:07

标签: io lua output

我执行下面的代码,但它没有创建输出文件(至少在* .lua所在的目录下)

 file = io.open("output.txt","w")
io.output(file)
io.write("hello, reader!")
io.close(file)

我在Windows上使用ZeroBrane Studio,如果有帮助的话

1 个答案:

答案 0 :(得分:2)

该文件将在您当前所在的项目目录中创建。

当您打开alembic migrate <target-revision> 文件时,可以点击ZBS中的Set project directory from current file按钮。

顺便说一下,另一个寻找文件的清洁工就是使用文件上的方法,比如

lua

它做同样的事情,虽然看起来更漂亮。