blob: b20b49958ce7322f1cc0b9ab35fdafd7d3a22a7a [file] [log] [blame]
//go: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
}