在 Go 语言中, path包用于以斜杠分隔的路径,例如 URL 中的路径。 Go 语言中的filepath.IsAbs()函数用于报告路径是否为绝对路径。而且这个函数是在path包下定义的。在这里,您需要导入“path/filepath”包才能使用这些功能。
句法:
func IsAbs(path string) bool
这里,’path’ 是指定的绝对或非绝对路径。
返回值:绝对路径返回真,否则返回假。
示例 1:
// Golang program to illustrate the usage of
// filepath.IsAbs() function
// Including the main package
package main
// Importing fmt and path/filepath
import (
"fmt"
"path/filepath"
)
// Calling main
func main() {
// Calling the IsAbs() function with
// some absolute and unabsolute paths
fmt.Println(filepath.IsAbs("/home/gfg"))
fmt.Println(filepath.IsAbs(".gfg"))
fmt.Println(filepath.IsAbs("/gfg"))
fmt.Println(filepath.IsAbs(":gfg"))
}
输出:
true
false
true
false
示例 2:
// Golang program to illustrate the usage of
// filepath.IsAbs() function
// Including the main package
package main
// Importing fmt and path/filepath
import (
"fmt"
"path/filepath"
)
// Calling main
func main() {
// Calling the IsAbs() function with
// some absolute and unabsolute paths
fmt.Println(filepath.IsAbs("/"))
fmt.Println(filepath.IsAbs("."))
fmt.Println(filepath.IsAbs(":"))
fmt.Println(filepath.IsAbs("/."))
fmt.Println(filepath.IsAbs("//"))
fmt.Println(filepath.IsAbs(":/"))
}
输出:
true
false
false
true
true
false