所以我试图制作我的第一个lua程序而且我无法弄清楚为什么当我在文件中读到它时,它返回该文件不存在或者不存在目录......这是我的代码。
io.input("myfile.txt")
word = io.read("*line")
print (word)
myfile.txt与项目位于同一目录中......可能出现什么问题?
答案 0 :(得分:1)
我不能复制这个问题:
: nr@homedog 10317 ; echo foo > myfile.txt
: nr@homedog 10318 ; lua
Lua 5.1.4 Copyright (C) 1994-2008 Lua.org, PUC-Rio
> io.input("myfile.txt")
> word = io.read("*line")
> print (word)
foo
>