mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
12 lines
210 B
Go
12 lines
210 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
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
|
|
}
|