-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfile.go
45 lines (36 loc) · 986 Bytes
/
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
package baozheng
import (
`path/filepath`
`regexp`
)
var (
_ = Base
_ = Filename
_ = Filepath
)
// Base 有效文件名(Windows标准)/路径和文件名检测同一个
// 我们用200个字符
func Base(file string) bool {
if file == "/" {
return true
}
fileRegexStr := `^[^\\\./:\*\?\"<>\|]{1}[^\\/:\*\?\"<>\|]{0,200}$`
filenameRegex := regexp.MustCompile(fileRegexStr)
return filenameRegex.MatchString(filepath.Base(file))
}
// Filename 有效文件名(Windows标准)
func Filename(filename string) bool {
fileRegexStr := `^[^\\\./:\*\?\"<>\|]{1}[^\\/:\*\?\"<>\|]{0,254}$`
filenameRegex := regexp.MustCompile(fileRegexStr)
return filenameRegex.MatchString(filename)
}
// Filepath 有效文件夹名
func Filepath(filepath string) bool {
pathRegexStr := `^[^\\\/\?\*\"\'\>\<\:\|]*$`
pathRegex := regexp.MustCompile(pathRegexStr)
if len(filepath) == 0 {
return false
}
filepath = filepath[1:]
return pathRegex.MatchString(filepath)
}