PHP
·
发表于 5年以前
·
阅读量:8281
import (
"os"
)
func FileExist(filename string) bool {
_, err := os.Stat(filename)
return err == nil || os.IsExist(err)
}