Browse Source

avoid non utf-8 in filename

fix https://github.com/chrislusf/seaweedfs/issues/1493
pull/1502/head
Chris Lu 4 years ago
parent
commit
a37535cd9f
  1. 2
      weed/util/fullpath.go

2
weed/util/fullpath.go

@ -13,6 +13,7 @@ func NewFullPath(dir, name string) FullPath {
func (fp FullPath) DirAndName() (string, string) {
dir, name := filepath.Split(string(fp))
name = strings.ToValidUTF8(name, "?")
if dir == "/" {
return dir, name
}
@ -24,6 +25,7 @@ func (fp FullPath) DirAndName() (string, string) {
func (fp FullPath) Name() string {
_, name := filepath.Split(string(fp))
name = strings.ToValidUTF8(name, "?")
return name
}

Loading…
Cancel
Save