fix judge path func

This commit is contained in:
2018-04-13 22:39:01 +08:00
parent f499fd0449
commit 68a92c68af
3 changed files with 31 additions and 22 deletions

View File

@@ -25,7 +25,6 @@ import (
"fmt"
"io"
"io/ioutil"
"log"
"os"
"path/filepath"
"strings"
@@ -65,12 +64,7 @@ func loadData(p string) ([]byte, error) {
}
func isPath(path string) (bool, string) {
p, err := filepath.Abs("")
if err != nil {
log.Fatal(err)
}
absPath := filepath.Join(p, strings.Replace(path, p, "", 1))
absPath, err := filepath.Abs(path)
_, err = os.Stat(absPath)
if err == nil {
return true, absPath