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