diff options
Diffstat (limited to 'src/pkg/path/filepath/path_windows.go')
-rw-r--r-- | src/pkg/path/filepath/path_windows.go | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/pkg/path/filepath/path_windows.go b/src/pkg/path/filepath/path_windows.go deleted file mode 100644 index 35302eb1a..000000000 --- a/src/pkg/path/filepath/path_windows.go +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2010 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package filepath - -import "os" - -// IsAbs returns true if the path is absolute. -func IsAbs(path string) bool { - return path != "" && (volumeName(path) != "" || os.IsPathSeparator(path[0])) -} - -// volumeName return leading volume name. -// If given "C:\foo\bar", return "C:" on windows. -func volumeName(path string) string { - if path == "" { - return "" - } - // with drive letter - c := path[0] - if len(path) > 2 && path[1] == ':' && os.IsPathSeparator(path[2]) && - ('0' <= c && c <= '9' || 'a' <= c && c <= 'z' || - 'A' <= c && c <= 'Z') { - return path[0:2] - } - return "" -} |