mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-21 07:07:25 +08:00
avoid unnecessary user home checking
This commit is contained in:
@@ -69,6 +69,10 @@ func CheckFile(filename string) (exists, canRead, canWrite bool, modTime time.Ti
|
||||
|
||||
func ResolvePath(path string) string {
|
||||
|
||||
if !strings.Contains(path, "~") {
|
||||
return path
|
||||
}
|
||||
|
||||
usr, _ := user.Current()
|
||||
dir := usr.HomeDir
|
||||
|
||||
|
Reference in New Issue
Block a user