func Base(path string) string
1.1、此函数的作用

获取以/为分隔符的路径中的最后一个元素。

1.2、说明
1.3、使用示例
package main

import (
    "fmt"
	"path"
)

func main() {
    fmt.Println(path.Base("https://go.dev/src/reflect/type.go")) //type.go
}

使用go命令编译并运行:

go run test.go