github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/integration-cli/utils_unix_test.go (about)

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