File Paths example
This commit is contained in:
62
examples/file-paths/file-paths.go
Normal file
62
examples/file-paths/file-paths.go
Normal file
@@ -0,0 +1,62 @@
|
||||
// The `filepath` package provides functions to parse
|
||||
// and construct *file paths* in a way that is portable
|
||||
// between operating systems; `dir/file` on Linux vs.
|
||||
// `dir\file` on Windows, for example.
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
// `Join` should be used to construct paths in a
|
||||
// portable way. It takes any number of arguments
|
||||
// and constructs a hierarchical path from them.
|
||||
p := filepath.Join("dir1", "dir2", "filename")
|
||||
fmt.Println("p:", p)
|
||||
|
||||
// You should always use `Join` instead of
|
||||
// concatenating `/`s or `\`s manually. In addition
|
||||
// to providing portability, `Join` will also
|
||||
// normalize paths by removing superfluous separators
|
||||
// and directory changes.
|
||||
fmt.Println(filepath.Join("dir1//", "filename"))
|
||||
fmt.Println(filepath.Join("dir1/../dir1", "filename"))
|
||||
|
||||
// `Dir` and `Base` can be used to split a path to the
|
||||
// directory and the file. Alternatively, `Split` will
|
||||
// return both in the same call.
|
||||
fmt.Println("Dir(p):", filepath.Dir(p))
|
||||
fmt.Println("Base(p):", filepath.Base(p))
|
||||
|
||||
// To check whether a path is absolute, use `IsAbs`.
|
||||
fmt.Println(filepath.IsAbs("dir/file"))
|
||||
fmt.Println(filepath.IsAbs("/dir/file"))
|
||||
|
||||
filename := "config.json"
|
||||
|
||||
// To find a file's extension, use `Ext`.
|
||||
ext := filepath.Ext(filename)
|
||||
fmt.Println(ext)
|
||||
|
||||
// To find the file's name with the extension removed,
|
||||
// use `TrimSuffix`.
|
||||
fmt.Println(strings.TrimSuffix(filename, ext))
|
||||
|
||||
// `Rel` finds a relative path between a *base* and a
|
||||
// *target*.
|
||||
rel, err := filepath.Rel("a/b", "a/b/t/file")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
fmt.Println(rel)
|
||||
|
||||
rel, err = filepath.Rel("a/b", "a/c/t/file")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
fmt.Println(rel)
|
||||
}
|
||||
2
examples/file-paths/file-paths.hash
Normal file
2
examples/file-paths/file-paths.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
4611ff69626490eb50673a739707d870fac79142
|
||||
eUhAltl7_sI
|
||||
12
examples/file-paths/file-paths.sh
Normal file
12
examples/file-paths/file-paths.sh
Normal file
@@ -0,0 +1,12 @@
|
||||
$ go run file-paths.go
|
||||
p: dir1/dir2/filename
|
||||
dir1/filename
|
||||
dir1/filename
|
||||
Dir(p): dir1/dir2
|
||||
Base(p): filename
|
||||
false
|
||||
true
|
||||
.json
|
||||
config
|
||||
t/file
|
||||
../c/t/file
|
||||
Reference in New Issue
Block a user