github.com/devdivbcp/moby@v17.12.0-ce-rc1.0.20200726071732-2d4bfdc789ad+incompatible/pkg/system/path_unix.go (about) 1 // +build !windows 2 3 package system // import "github.com/docker/docker/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 }