Source File
path_unix.go
Belonging Package
path/filepath
// 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.
//go:build aix || darwin || dragonfly || freebsd || (js && wasm) || linux || netbsd || openbsd || solaris
package filepath
import
// IsAbs reports whether the path is absolute.
func ( string) bool {
return strings.HasPrefix(, "/")
}
// volumeNameLen returns length of the leading volume name on Windows.
// It returns 0 elsewhere.
func ( string) int {
return 0
}
// HasPrefix exists for historical compatibility and should not be used.
//
// Deprecated: HasPrefix does not respect path boundaries and
// does not ignore case when required.
func (, string) bool {
return strings.HasPrefix(, )
}
func ( string) []string {
if == "" {
return []string{}
}
return strings.Split(, string(ListSeparator))
}
func ( string) (string, error) {
return unixAbs()
}
func ( []string) string {
// If there's a bug here, fix the logic in ./path_plan9.go too.
for , := range {
if != "" {
return Clean(strings.Join([:], string(Separator)))
}
}
return ""
}
func (, string) bool {
return ==
}
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)