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