Browse Source

fix: 删除带特殊符号文件的报错问题 (#3657) (#3658)

Refs #3657
pull/3669/head
igophper 10 months ago committed by GitHub
parent
commit
e8c94450f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      backend/utils/files/file_op.go

2
backend/utils/files/file_op.go

@ -319,7 +319,7 @@ func (f FileOp) Cut(oldPaths []string, dst, name string, cover bool) error {
}
func (f FileOp) Mv(oldPath, dstPath string) error {
cmdStr := fmt.Sprintf("mv %s %s", oldPath, dstPath)
cmdStr := fmt.Sprintf(`mv "%s" "%s"`, oldPath, dstPath)
if err := cmd.ExecCmd(cmdStr); err != nil {
return err
}

Loading…
Cancel
Save