rclone/lib/file/unc.go

11 lines
191 B
Go
Raw Permalink Normal View History

2021-09-09 20:25:25 +08:00
//go:build !windows
2020-06-11 20:00:56 +08: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
}