github.com/demonoid81/moby@v0.0.0-20200517203328-62dd8e17c460/pkg/system/path_unix.go (about)

     1  // +build !windows
     2  
     3  package system // import "github.com/demonoid81/moby/pkg/system"
     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  }