parent
e42d439efc
commit
9c1cb4074f
|
@ -42,13 +42,13 @@ func IsPathExist(path string) bool {
|
||||||
|
|
||||||
```go
|
```go
|
||||||
func isFileExist(filename string) bool {
|
func isFileExist(filename string) bool {
|
||||||
info, e := os.Stat(filename)
|
info, e := os.Stat(filename)
|
||||||
|
|
||||||
if e == nil {
|
if e == nil {
|
||||||
return !info.IsDir()
|
return !info.IsDir()
|
||||||
} else {
|
} else {
|
||||||
return os.IsExist(e)
|
return os.IsExist(e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue