summaryrefslogtreecommitdiff
path: root/vendor/github.com/dsoprea/go-utility/v2/filesystem/does_exist.go
diff options
context:
space:
mode:
authorLibravatar tsmethurst <tobi.smethurst@protonmail.com>2022-01-23 14:41:31 +0100
committerLibravatar tsmethurst <tobi.smethurst@protonmail.com>2022-01-23 14:41:31 +0100
commit7d024ce74d29a14bc8db60495751e674bdb24463 (patch)
tree6d6b0cde4a2245a2539e7251c484bcaf00291056 /vendor/github.com/dsoprea/go-utility/v2/filesystem/does_exist.go
parentpass reader around instead of []byte (diff)
downloadgotosocial-7d024ce74d29a14bc8db60495751e674bdb24463.tar.xz
use exif-terminator
Diffstat (limited to 'vendor/github.com/dsoprea/go-utility/v2/filesystem/does_exist.go')
-rw-r--r--vendor/github.com/dsoprea/go-utility/v2/filesystem/does_exist.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/github.com/dsoprea/go-utility/v2/filesystem/does_exist.go b/vendor/github.com/dsoprea/go-utility/v2/filesystem/does_exist.go
new file mode 100644
index 000000000..f5e6cd20a
--- /dev/null
+++ b/vendor/github.com/dsoprea/go-utility/v2/filesystem/does_exist.go
@@ -0,0 +1,19 @@
+package rifs
+
+import (
+ "os"
+)
+
+// DoesExist returns true if we can open the given file/path without error. We
+// can't simply use `os.IsNotExist()` because we'll get a different error when
+// the parent directory doesn't exist, and really the only important thing is if
+// it exists *and* it's readable.
+func DoesExist(filepath string) bool {
+ f, err := os.Open(filepath)
+ if err != nil {
+ return false
+ }
+
+ f.Close()
+ return true
+}