We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Recursion
Closed
1 parent ee0472d commit ae4ec3fCopy full SHA for ae4ec3f
internal/filesystem/errors/errors.go
@@ -27,6 +27,8 @@ const (
27
NotDir // Item is not a directory.
28
NotEmpty // Directory not empty.
29
ReadOnly // File system has no modification capabilities.
30
+ Recursion // Item has recurred too many times. E.g. an infinite symlink loop.
31
+ Closed // Item was never opened or has already been closed.
32
)
33
34
func (e *Error) Unwrap() error { return &e.PathError }
0 commit comments