2021-08-23 09:14:53 -04:00
|
|
|
//go:build !windows
|
2018-09-05 19:38:25 -04:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package system // import "github.com/docker/docker/pkg/system"
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
2021-03-18 16:01:46 -04:00
|
|
|
|
|
|
|
// checkSystemDriveAndRemoveDriveLetter is the non-Windows implementation
|
|
|
|
// of CheckSystemDriveAndRemoveDriveLetter
|
|
|
|
func checkSystemDriveAndRemoveDriveLetter(path string, driver PathVerifier) (string, error) {
|
|
|
|
return path, nil
|
|
|
|
}
|