2 Star 0 Fork 1

mirrors_kardianos/govendor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
prefix.go 299 Bytes
一键复制 编辑 原始数据 按行查看 历史
Achille Roussel 提交于 2016-07-31 22:59 . add tests
package vfilepath
import (
"path/filepath"
"strings"
)
func HasPrefixDir(path string, prefix string) bool {
return strings.HasPrefix(makeDirPath(path), makeDirPath(prefix))
}
func makeDirPath(path string) string {
if path = filepath.Clean(path); path != "/" {
path += "/"
}
return path
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_kardianos/govendor.git
git@gitee.com:mirrors_kardianos/govendor.git
mirrors_kardianos
govendor
govendor
v1.0.6

搜索帮助