This commit is contained in:
zengxiangbin 2017-10-25 16:10:49 +08:00
parent 7b8121b9c8
commit 16c5401b2e

View File

@ -10,11 +10,9 @@ local function isFile(path)
end end
local function isDir(path) local function isDir(path)
local tmp = path.."/"..os.tmpname() path = string.gsub(path.."/", "//", "/")
local f = io.open(tmp, "w") local ok, err, code = os.rename(path, path)
if f then if ok or code == 13 then
f:close()
os.remove(tmp)
return true return true
end end
return false return false