脚本出现 “attempt to use a closed file”
这个是不是 打开的文件没关闭
其中一些代码
local file=find("/User/Containers/Data/Application/*/Documents/"..xxx)
mSleep(200)
if file~=nil then
local a = file:read("*l")
if a~=nil then
file:close()
remove(a)
mSleep(200)
else
end
end
这段代码有问题没?