-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_system.go
60 lines (53 loc) · 1.37 KB
/
file_system.go
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package main
import (
"io/ioutil"
"os"
"os/user"
"path/filepath"
"strings"
)
func tidyPath(pathComponents ...string) (string, error) {
rawPath := filepath.Join(pathComponents...)
currentUser, _ := user.Current()
homeDirectory := currentUser.HomeDir
if "~" == rawPath {
return homeDirectory, nil
} else if strings.HasPrefix(rawPath, "~/") {
return filepath.Join(
homeDirectory,
strings.TrimPrefix(rawPath, "~/"),
),
nil
}
return filepath.Abs(rawPath)
}
var (
pathTidier = tidyPath
dotFileWriter = func(contents []byte, pathComponents ...string) error {
return writeFile(contents, 0600, pathComponents...)
}
)
func EnsureDirectoryExists(pathComponents ...string) error {
combinedPath, err := pathTidier(pathComponents...)
if nil == err {
err = os.MkdirAll(combinedPath, os.ModePerm)
}
return err
}
func LoadFile(pathComponents ...string) ([]byte, error) {
combinedPath, err := pathTidier(pathComponents...)
if nil != err {
return []byte{}, err
}
return ioutil.ReadFile(combinedPath)
}
func writeFile(contents []byte, permissions os.FileMode, pathComponents ...string) error {
combinedPath, err := pathTidier(pathComponents...)
if nil != err {
return err
}
return ioutil.WriteFile(combinedPath, contents, permissions)
}
func WriteDotFile(contents []byte, pathComponents ...string) error {
return dotFileWriter(contents, pathComponents...)
}