Files
Ratte/common/file/file.go
2024-09-12 06:04:32 +09: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)
}