-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPathUtils.lua
46 lines (39 loc) · 1.07 KB
/
PathUtils.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
PathUtils = {}
function PathUtils:join(...)
local params = {...}
if #params <= 1 then
return params[1]
elseif #params == 2 then
local path_1 = params[1]
local path_2 = params[2]
if string.endWith(params[1], '/') then
path_1 = string.sub(params[1], 1, -2)
end
if string.startWith(params[2], '/') then
path_2 = string.sub(params[2], 2, -1)
end
return path_1 .. '/' .. path_2
else
local two = {table.remove(params), table.remove(params)}
local ret = self:join(two)
return self:join(ret, table.unpack(params))
end
end
function PathUtils:getDirName(pathname)
return io.pathinfo(pathname).dirname
end
function PathUtils:getFileName(pathname)
return io.pathinfo(pathname).filename
end
function PathUtils:getBaseName(pathname)
return io.pathinfo(pathname).basename
end
function PathUtils:getExtName(pathname)
return io.pathinfo(pathname).extname
end
function PathUtils:split( pathname )
return self:getDirName(pathname), self:getFileName(pathname)
end
function PathUtils:splitExt( pathname )
return self:getBaseName(pathname), self:getExtName(pathname)
end