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)
}