blob: abb7d2ff8369e8e9e706e72ca9514954f40d0b09 [file] [log] [blame]
//go:build !windows
// +build !windows
package main
// getLongPathName converts Windows short pathnames to full pathnames.
// For example C:\Users\ADMIN~1 --> C:\Users\Administrator.
// It is a no-op on non-Windows platforms
func getLongPathName(path string) (string, error) {
return path, nil
}