相对路径切换为相对工作目录而不是可执行文件
This commit is contained in:
parent
9ff1b47646
commit
b2ddac9abc
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue