2021-09-09 14:25:25 +02:00
|
|
|
//go:build !windows
|
|
|
|
// +build !windows
|
2020-06-11 14:00:56 +02:00
|
|
|
|
|
|
|
package file
|
|
|
|
|
|
|
|
// UNCPath converts an absolute Windows path to a UNC long path.
|
|
|
|
//
|
|
|
|
// It does nothing on non windows platforms
|
|
|
|
func UNCPath(l string) string {
|
|
|
|
return l
|
|
|
|
}
|