unc.go 191 B

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