path

Package path implements utility routines for manipulating slash-separated paths.

Index

Functions

func Base

1func Base(path string) string

Base returns the last element of path. Trailing slashes are removed before extracting the last element. If the path is empty, Base returns ".". If the path consists entirely of slashes, Base returns "/".

1fmt.Println(path.Base("/a/b"))
2fmt.Println(path.Base("/"))
3fmt.Println(path.Base(""))

Output

b
/
.

func Clean

1func Clean(path string) string

Clean returns the shortest path name equivalent to path by purely lexical processing. It applies the following rules iteratively until no further processing can be done:

  1. Replace multiple slashes with a single slash.
  2. Eliminate each . path name element (the current directory).
  3. Eliminate each inner .. path name element (the parent directory) along with the non-.. element that precedes it.
  4. Eliminate .. elements that begin a rooted path: that is, replace “/..” by “/” at the beginning of a path.

The returned path ends in a slash only if it is the root “/”.

If the result of this process is an empty string, Clean returns the string “.”.

See also Rob Pike, “Lexical File Names in Plan 9 or Getting Dot-Dot Right,” https://9p.io/sys/doc/lexnames.html

 1paths := []string{
 2	"a/c",
 3	"a//c",
 4	"a/c/.",
 5	"a/c/b/..",
 6	"/../a/c",
 7	"/../a/b/../././/c",
 8	"",
 9}
10
11for _, p := range paths {
12	fmt.Printf("Clean(%q) = %q\n", p, path.Clean(p))
13}

Output

Clean("a/c") = "a/c"
Clean("a//c") = "a/c"
Clean("a/c/.") = "a/c"
Clean("a/c/b/..") = "a/c"
Clean("/../a/c") = "/a/c"
Clean("/../a/b/../././/c") = "/a/c"
Clean("") = "."

func Dir

1func Dir(path string) string

Dir returns all but the last element of path, typically the path's directory. After dropping the final element using Split, the path is Cleaned and trailing slashes are removed. If the path is empty, Dir returns ".". If the path consists entirely of slashes followed by non-slash bytes, Dir returns a single slash. In any other case, the returned path does not end in a slash.

1fmt.Println(path.Dir("/a/b/c"))
2fmt.Println(path.Dir("a/b/c"))
3fmt.Println(path.Dir("/a/"))
4fmt.Println(path.Dir("a/"))
5fmt.Println(path.Dir("/"))
6fmt.Println(path.Dir(""))

Output

/a/b
a/b
/a
a
/
.

func Ext

1func Ext(path string) string

Ext returns the file name extension used by path. The extension is the suffix beginning at the final dot in the final slash-separated element of path; it is empty if there is no dot.

1fmt.Println(path.Ext("/a/b/c/bar.css"))
2fmt.Println(path.Ext("/"))
3fmt.Println(path.Ext(""))

Output

.css

func IsAbs

1func IsAbs(path string) bool

IsAbs reports whether the path is absolute.

1fmt.Println(path.IsAbs("/dev/null"))

Output

true

func Join

1func Join(elem ...string) string

Join joins any number of path elements into a single path, separating them with slashes. Empty elements are ignored. The result is Cleaned. However, if the argument list is empty or all its elements are empty, Join returns an empty string.

1fmt.Println(path.Join("a", "b", "c"))
2fmt.Println(path.Join("a", "b/c"))
3fmt.Println(path.Join("a/b", "c"))
4
5fmt.Println(path.Join("a/b", "../../../xyz"))
6
7fmt.Println(path.Join("", ""))
8fmt.Println(path.Join("a", ""))
9fmt.Println(path.Join("", "a"))

Output

a/b/c
a/b/c
a/b/c
../xyz

a
a

func Match

1func Match(pattern, name string) (matched bool, err error)

Match reports whether name matches the shell pattern. The pattern syntax is:

pattern:
	{ term }
term:
	'*'         matches any sequence of non-/ characters
	'?'         matches any single non-/ character
	'[' [ '^' ] { character-range } ']'
	            character class (must be non-empty)
	c           matches character c (c != '*', '?', '\\', '[')
	'\\' c      matches character c

character-range:
	c           matches character c (c != '\\', '-', ']')
	'\\' c      matches character c
	lo '-' hi   matches character c for lo <= c <= hi

Match requires pattern to match all of name, not just a substring. The only possible returned error is ErrBadPattern, when pattern is malformed.

1fmt.Println(path.Match("abc", "abc"))
2fmt.Println(path.Match("a*", "abc"))
3fmt.Println(path.Match("a*/b", "a/c/b"))

Output

true 
true 
false 

func Split

1func Split(path string) (dir, file string)

Split splits path immediately following the final slash, separating it into a directory and file name component. If there is no slash in path, Split returns an empty dir and file set to path. The returned values have the property that path = dir+file.

1split := func(s string) {
2	dir, file := path.Split(s)
3	fmt.Printf("path.Split(%q) = dir: %q, file: %q\n", s, dir, file)
4}
5split("static/myfile.css")
6split("myfile.css")
7split("")

Output

path.Split("static/myfile.css") = dir: "static/", file: "myfile.css"
path.Split("myfile.css") = dir: "", file: "myfile.css"
path.Split("") = dir: "", file: ""

© Matthias Hochgatterer – MastodonGithubRésumé