forked from hirochachacha/go-smb2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
path.go
92 lines (72 loc) · 1.25 KB
/
path.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
package smb2
import (
"errors"
"os"
"strings"
)
const PathSeparator = '\\'
func IsPathSeparator(c uint8) bool {
return c == '\\'
}
func base(path string) string {
j := len(path)
for j > 0 && IsPathSeparator(path[j-1]) {
j--
}
if j == 0 {
return ""
}
i := j - 1
for i > 0 && !IsPathSeparator(path[i-1]) {
i--
}
return path[i:j]
}
func dir(path string) string {
if path == "" {
return ""
}
i := len(path)
for i > 0 && IsPathSeparator(path[i-1]) {
i--
}
if i == 0 {
return "\\"
}
i--
for i > 0 && !IsPathSeparator(path[i-1]) {
i--
}
if i == 0 {
return ""
}
i--
for i > 0 && IsPathSeparator(path[i-1]) {
i--
}
if i == 0 {
return "\\"
}
return path[:i]
}
func validatePath(op string, path string, allowAbs bool) error {
if len(path) == 0 {
return nil
}
if strings.ContainsRune(path, '/') {
return &os.PathError{Op: op, Path: path, Err: errors.New("can't use '/' as a path separator; use '\\' instead")}
}
if !allowAbs && path[0] == '\\' {
return &os.PathError{Op: op, Path: path, Err: errors.New("leading '\\' is not allowed in this operation")}
}
return nil
}
func normPath(path string) string {
for strings.HasPrefix(path, `.\`) {
path = path[2:]
}
if path == "." {
return ""
}
return path
}