robotfs/utils/file.go
2025-05-12 20:23:33 +08:00

15 lines
187 B
Go

package utils
import (
"strings"
"path/filepath"
)
func NormalizePath(path string) string {
if !strings.HasPrefix(path, "/") {
path = "/" + path
}
return filepath.Clean(path)
}