-
Notifications
You must be signed in to change notification settings - Fork 18
/
File.go
70 lines (61 loc) · 1.54 KB
/
File.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
61
62
63
64
65
66
67
68
69
70
package L
import (
"bufio"
"io"
"os"
)
// FileExists check file exists
func FileExists(name string) bool {
_, err := os.Stat(name)
return !os.IsNotExist(err)
}
// FileEmpty check file missing or has zero size
func FileEmpty(name string) bool {
stat, err := os.Stat(name)
return os.IsNotExist(err) || stat.Size() <= 0
}
// CreateFile create file with specific content
func CreateFile(path string, content string) bool {
var file, err = os.OpenFile(path, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
if IsError(err, `CreateFile.OpenFile: %s`, path) {
return false
}
defer file.Close()
_, err = file.WriteString(content)
if IsError(err, `CreateFile.WriteFile: %s`, path) {
return false
}
err = file.Sync()
return !IsError(err, `CreateFile.SyncFile: %s`, path)
}
// CreateDir create directory recursively
func CreateDir(path string) bool {
err := os.MkdirAll(path, 0777)
return !IsError(err, `CreateDir: `+path)
}
// ReadFile read file content as string
func ReadFile(path string) string {
var buff, err = os.ReadFile(path)
if IsError(err, `ReadFile: %s`, path) {
return ``
}
return string(buff)
}
// ReadFileLines read file content line by line
func ReadFileLines(path string, eachLineFunc func(line string) (exitEarly bool)) (ok bool) {
f, err := os.OpenFile(path, os.O_RDONLY, 0644)
if IsError(err, `ReadFileLines.OpenFile: %s`, path) {
return false
}
defer f.Close()
reader := bufio.NewReader(f)
for {
line, err := reader.ReadString('\n')
if err == io.EOF {
return true
}
if eachLineFunc(line) {
return true
}
}
}