2018-09-05 19:38:25 -04:00
|
|
|
package system // import "github.com/docker/docker/pkg/system"
|
|
|
|
|
2020-03-09 06:50:32 -04:00
|
|
|
import "golang.org/x/sys/windows"
|
2018-09-05 19:38:25 -04:00
|
|
|
|
|
|
|
// 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) {
|
|
|
|
// See https://groups.google.com/forum/#!topic/golang-dev/1tufzkruoTg
|
2020-03-09 06:50:32 -04:00
|
|
|
p, err := windows.UTF16FromString(path)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2018-09-05 19:38:25 -04:00
|
|
|
b := p // GetLongPathName says we can reuse buffer
|
2020-03-09 06:50:32 -04:00
|
|
|
n, err := windows.GetLongPathName(&p[0], &b[0], uint32(len(b)))
|
2018-09-05 19:38:25 -04:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if n > uint32(len(b)) {
|
|
|
|
b = make([]uint16, n)
|
2020-03-09 06:50:32 -04:00
|
|
|
_, err = windows.GetLongPathName(&p[0], &b[0], uint32(len(b)))
|
2018-09-05 19:38:25 -04:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
}
|
2020-03-09 06:50:32 -04:00
|
|
|
return windows.UTF16ToString(b), nil
|
2018-09-05 19:38:25 -04:00
|
|
|
}
|