forked from filedrive-team/filehelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filewalk.go
139 lines (129 loc) · 2.59 KB
/
filewalk.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package filehelper
import (
"fmt"
"io/ioutil"
"os"
"strings"
)
func FileWalkAsyncWithIgnore(args []string, ignore []string) chan Finfo {
fichan := make(chan Finfo)
go func() {
defer close(fichan)
for _, path := range args {
finfo, err := os.Stat(path)
if err != nil {
return
}
if shouldIgnore(finfo.Name(), ignore) {
continue
}
// 忽略隐藏目录
if strings.HasPrefix(finfo.Name(), ".") {
continue
}
if finfo.IsDir() {
files, err := ioutil.ReadDir(path)
if err != nil {
return
}
templist := make([]string, 0)
for _, n := range files {
templist = append(templist, fmt.Sprintf("%s/%s", path, n.Name()))
}
embededChan := FileWalkAsyncWithIgnore(templist, ignore)
if err != nil {
return
}
for item := range embededChan {
fichan <- item
}
} else {
fichan <- Finfo{
Path: path,
Name: finfo.Name(),
Info: finfo,
}
}
}
}()
return fichan
}
func FileWalkAsync(args []string) chan Finfo {
fichan := make(chan Finfo)
go func() {
defer close(fichan)
for _, path := range args {
finfo, err := os.Stat(path)
if err != nil {
return
}
// 忽略隐藏目录
if strings.HasPrefix(finfo.Name(), ".") {
continue
}
if finfo.IsDir() {
files, err := ioutil.ReadDir(path)
if err != nil {
return
}
templist := make([]string, 0)
for _, n := range files {
templist = append(templist, fmt.Sprintf("%s/%s", path, n.Name()))
}
embededChan := FileWalkAsync(templist)
if err != nil {
return
}
for item := range embededChan {
fichan <- item
}
} else {
fichan <- Finfo{
Path: path,
Name: finfo.Name(),
Info: finfo,
}
}
}
}()
return fichan
}
func FileWalkSync(args []string) (fileList []string, err error) {
fileList = make([]string, 0)
for _, path := range args {
finfo, err := os.Stat(path)
if err != nil {
return nil, err
}
// 忽略隐藏目录
if strings.HasPrefix(finfo.Name(), ".") {
continue
}
if finfo.IsDir() {
files, err := ioutil.ReadDir(path)
if err != nil {
return nil, err
}
templist := make([]string, 0)
for _, n := range files {
templist = append(templist, fmt.Sprintf("%s/%s", path, n.Name()))
}
list, err := FileWalkSync(templist)
if err != nil {
return nil, err
}
fileList = append(fileList, list...)
} else {
fileList = append(fileList, path)
}
}
return
}
func shouldIgnore(str string, blacklist []string) bool {
for _, item := range blacklist {
if item == str {
return true
}
}
return false
}