1 Star 0 Fork 0

笑看风云 / gocodes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
path.go 268 Bytes
一键复制 编辑 原始数据 按行查看 历史
笑看风云 提交于 2021-11-02 22:03 . 增加mylog, list和path
package filepathx
import (
"path/filepath"
"strings"
)
// Name 获取指定路径的名字
// dir/[Name].ext
func Name(path string) (r string) {
r = filepath.Base(path)
ext := filepath.Ext(path)
if ext != "" {
r = strings.Replace(r, ext, "", -1)
}
return
}
Go
1
https://gitee.com/zhongguo168a/gocodes.git
git@gitee.com:zhongguo168a/gocodes.git
zhongguo168a
gocodes
gocodes
46752958e769

搜索帮助