Golang-filepath
使用
获取当前目录
代码语言:javascript复制os.GetPWD()
filepath.Abs(path) # 绝对目录
filepath.Dir(path) # 相对目录
可以 filepath.Abs(filepath.Dir(path))
获取字符目录,前缀,后缀等方法
代码语言:javascript复制filepath.Split(path)
filepath.Base(path) # test.txt
filepath.Ext(path) # .txt