1
0
mirror of https://github.com/wyx2685/V2bX.git synced 2025-03-10 14:48:12 -04:00
V2bX/common/file/file.go
2023-01-12 14:27:06 +08:00

9 lines
129 B
Go

package file
import "os"
func IsExist(path string) bool {
_, err := os.Stat(path)
return err == nil || !os.IsNotExist(err)
}