1
0
mirror of https://github.com/wyx2685/V2bX.git synced 2025-03-11 06:58:13 -04:00
V2bX/common/file/file.go

9 lines
129 B
Go
Raw Normal View History

2023-01-12 01:27:06 -05:00
package file
import "os"
func IsExist(path string) bool {
_, err := os.Stat(path)
return err == nil || !os.IsNotExist(err)
}