github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/lib/file/unc.go (about)

     1  //go:build !windows
     2  
     3  package file
     4  
     5  // UNCPath converts an absolute Windows path to a UNC long path.
     6  //
     7  // It does nothing on non windows platforms
     8  func UNCPath(l string) string {
     9  	return l
    10  }