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 unix || (js && wasm) || wasip1
package filepath
import
func ( string) bool {
return unixIsLocal()
}
// 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.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |