相对路径切换为相对工作目录而不是可执行文件

This commit is contained in:
不帅你报警 2021-10-29 11:24:43 +08:00 committed by GitHub
parent 9ff1b47646
commit b2ddac9abc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,11 +48,11 @@ func FormSlash(old string) string {
return path.Clean(strings.ReplaceAll(old, "\\", "/"))
}
// RelativePath 获取相对可执行文件的路径
// RelativePath 获取相对工作目录的路径
func RelativePath(name string) string {
if filepath.IsAbs(name) {
return name
}
e, _ := os.Executable()
return filepath.Join(filepath.Dir(e), name)
e, _ := os.Getwd()
return filepath.Join(e, name)
}