1
0
Fork 0
mirror of https://github.com/lightningnetwork/lnd.git synced 2025-03-15 11:59:26 +01:00
lnd/lnrpc/file_utils.go

16 lines
241 B
Go
Raw 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
}