lnd.xprv/lnrpc/file_utils.go

16 lines
241 B
Go
Raw Permalink Normal View History

package lnrpc
import (
"os"
)
// FileExists reports whether the named file or directory exists.
func FileExists(name string) bool {
if _, err := os.Stat(name); err != nil {
if os.IsNotExist(err) {
return false
}
}
return true
}