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