-
Notifications
You must be signed in to change notification settings - Fork 15
file system
Ramil Farkhshatov edited this page Dec 27, 2011
·
2 revisions
(0-) (path-dirname "one/two/three")
"one/two"
(1-) (path-dirname "one/two/")
"one/two"
(0-) (path-tail "one/two/three")
"three"
(1-) (path-tail "one/two/")
"two"
(0-) (path-extension "three.tar.gz")
".gz"
(1-) (path-extension "three.tar")
".tar"
(2-) (path-extension "one.two/three")
""
(0-) (path-extension "one/two/three.tar.gz")
"one/two/three.tar"
(1-) (path-tail "one/two/three.tar")
"one/two/three"
(2-) (path-tail "one.two/three")
"one.two/three"
(0-) (path-join ["one" "two" "three"])
"one/two/three"
(0-) (path-split "one/two/three")
["one" "two" "three"]
(1-) (path-split "/one/two/three")
["/" "one" "two" "three"]