1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-05 03:23:49 +08:00

调整 注释

This commit is contained in:
scjtqs 2021-03-16 21:56:05 +08:00
parent 373127b799
commit 2f536c42f8

View File

@ -341,15 +341,13 @@ func GetCurrentPath() (string, error) {
if err != nil {
return "", err
}
//fmt.Println("path111:", path)
if runtime.GOOS == "windows" {
fpath = strings.Replace(fpath, "\\", "/", -1)
// fpath = strings.Replace(fpath, "\\", "/", -1)
fpath = strings.ReplaceAll(fpath, "\\", "/")
}
//fmt.Println("path222:", path)
i := strings.LastIndex(fpath, "/")
if i < 0 {
return "", errors.New("system/path_error,Can't find '/' or '\\'")
}
//fmt.Println("path333:", path)
return string(fpath[0 : i+1]), nil
}