📜  如何检查文件是否存在 lua - TypeScript 代码示例
📅  最后修改于: 2022-03-11 14:48:37.140000             🧑  作者: Mango
代码示例1
function file_exists(name)
local f=io.open(name,"r")
if f~=nil then io.close(f) return true else return false end
end