当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang filepath.Base()用法及代码示例


Go语言中的路径包,用于通过正斜杠分隔的路径,例如URL中的路径。 Go语言中的filepath.Base()函数用于返回指定路径的最后一个元素。在这里,尾迹分隔符在提取最后一个元素之前被删除。如果路径为空,则Base返回“.”。如果路径完全由分隔符组成,则Base返回单个分隔符。此外,此函数在路径包下定义。在这里,您需要导入“path/filepath”软件包才能使用这些函数。

用法:

func Base(path string) string

在此,‘path’是指定的路径。

返回值:它返回指定路径的最后一个元素。如果路径为空,则此函数返回“.”。如果路径完全由分隔符组成,则此函数返回单个分隔符。

范例1:



// Golang program to illustrate the usage of 
// filepath.Base() function 
  
// Including the main package 
package main 
  
// Importing fmt and path/filepath 
import ( 
    "fmt"
    "path/filepath"
) 
  
// Calling main 
func main() { 
  
    // Calling the Base() function to 
    // get the last element of path 
    fmt.Println(filepath.Base("/home/gfg")) 
    fmt.Println(filepath.Base(".gfg")) 
    fmt.Println(filepath.Base("/gfg")) 
    fmt.Println(filepath.Base(":gfg/GFG")) 
}

输出:

gfg
.gfg
gfg
GFG

范例2:

// Golang program to illustrate the usage of 
// filepath.Base() function 
  
// Including the main package 
package main 
  
// Importing fmt and path/filepath 
import ( 
    "fmt"
    "path/filepath"
) 
  
// Calling main 
func main() { 
  
    // Calling the Base() function which 
    // returns "." if the path is empty 
    // and returns a single separator if 
    // the path consists entirely of separators 
    fmt.Println(filepath.Base("")) 
    fmt.Println(filepath.Base(".")) 
    fmt.Println(filepath.Base("/")) 
    fmt.Println(filepath.Base("/.")) 
    fmt.Println(filepath.Base("//")) 
    fmt.Println(filepath.Base(":/")) 
      
}

输出:

.
.
/
.
/
:



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 filepath.Base() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。