wechaty/go-wechaty

View on GitHub
wechaty-puppet/helper/file.go

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
package helper

import "os"

func FileExists(path string) bool {
    _, err := os.Stat(path)
    return !os.IsNotExist(err)
}