utils_unix_test.go 280 B

12345678910
  1. //go:build !windows
  2. package main
  3. // getLongPathName converts Windows short pathnames to full pathnames.
  4. // For example C:\Users\ADMIN~1 --> C:\Users\Administrator.
  5. // It is a no-op on non-Windows platforms
  6. func getLongPathName(path string) (string, error) {
  7. return path, nil
  8. }