fix #1
This commit is contained in:
parent
7b8121b9c8
commit
16c5401b2e
@ -10,11 +10,9 @@ local function isFile(path)
|
||||
end
|
||||
|
||||
local function isDir(path)
|
||||
local tmp = path.."/"..os.tmpname()
|
||||
local f = io.open(tmp, "w")
|
||||
if f then
|
||||
f:close()
|
||||
os.remove(tmp)
|
||||
path = string.gsub(path.."/", "//", "/")
|
||||
local ok, err, code = os.rename(path, path)
|
||||
if ok or code == 13 then
|
||||
return true
|
||||
end
|
||||
return false
|
||||
|
Loading…
Reference in New Issue
Block a user