对于重复的帖子或其他内容,我感到抱歉。我只是想确认这一点,因为我看过类似的帖子并且做了同样的事情,但我的输出不是我想要的问题是读取 Lua 语言的文本文件。这是我的代码:
function fileExists(filename)
file = io.open(filename, "r")
if file == nil then
return false
else
return true
end
end
if fileExists ("myFile.txt") then
print ("Hello")
else
print("not found")
end
它一直返回 false 并且找不到打印。而且我还试图打开一个 .lrc 文件而不是 .txt。这么简单的小代码行有什么问题?