summaryrefslogtreecommitdiff
path: root/src/pkg/path/filepath/path_windows.go
blob: 35302eb1ab41393be0c7845098d73349986c5219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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 ""
}