summaryrefslogtreecommitdiff
path: root/contrib/fs/stat.go
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/fs/stat.go')
-rw-r--r--contrib/fs/stat.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/contrib/fs/stat.go b/contrib/fs/stat.go
new file mode 100644
index 0000000..4dd65d8
--- /dev/null
+++ b/contrib/fs/stat.go
@@ -0,0 +1,28 @@
+package fs
+
+import (
+ "errors"
+ "io/fs"
+)
+
+func isNotFound(err error) bool {
+ if err == nil {
+ return false
+ }
+
+ var pathErr *fs.PathError
+ if errors.As(err, &pathErr) {
+ e := pathErr.Err
+ return errors.Is(e, fs.ErrInvalid) || errors.Is(e, fs.ErrNotExist)
+ }
+
+ return false
+}
+
+func fileIsDir(file fs.File) (bool, error) {
+ info, err := file.Stat()
+ if err != nil {
+ return false, err
+ }
+ return info.IsDir(), nil
+}