You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

path.go 145 B

12345678910
  1. package util
  2. import "os"
  3. func FileExist(path string) bool {
  4. if _, err := os.Stat(path); os.IsNotExist(err) {
  5. return false
  6. }
  7. return true
  8. }

No Description

Contributors (1)