1
0
Fork 0
mirror of https://github.com/lightningnetwork/lnd.git synced 2025-03-16 12:13:12 +01:00
lnd/lnrpc/file_utils.go
2019-02-01 09:43:17 +01:00

15 lines
241 B
Go

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
}