Fs.FileTest
eff FileTestSourceAn effect used to test file properties (exists, directory, regular file, symbolic link).
Operations
Returns true if the given file f exists.
Returns true if the given file f is a directory.
Returns true if the given file f is a regular file.
Definitions
Handles the FileTest effect of the given function f.
In other words, re-interprets the FileTest effect using the IO effect.
Handles the FileTest effect of the given function f using the FileStat effect.
@DefaultHandler Runs the FileTest effect of the given function f.
In other words, re-interprets the FileTest effect using the IO effect.
Middleware that intercepts the FileTest effect, validating that all file paths
match at least one of the given glob patterns. Rejects paths that do not match
with a PermissionDenied error.
def withAllowList(allowedDirs: Nel[String], f: Unit -> a \ ef): a \ (ef - FileTest) + FileTest§ SourceMiddleware that intercepts the FileTest effect, validating that all file paths
resolve within one of the given allowedDirs. Rejects paths outside the
allow list with a PermissionDenied error.
Middleware that intercepts the FileTest effect, resolving all file paths
relative to the given baseDir using Java's Path.resolve semantics.
Absolute paths are passed through unchanged.
Middleware that intercepts the FileTest effect, validating that all file paths
resolve within the given chrootDir. Rejects paths that escape the chroot with
a PermissionDenied error.
Middleware that intercepts the FileTest effect, validating that all file paths
do not match any of the given glob patterns. Rejects paths that match a denied
pattern with a PermissionDenied error.
def withDenyList(deniedDirs: Nel[String], f: Unit -> a \ ef): a \ (ef - FileTest) + FileTest§ SourceMiddleware that intercepts the FileTest effect, validating that all file paths
do not resolve within any of the given deniedDirs. Rejects paths inside a
denied directory with a PermissionDenied error.
Middleware that intercepts the FileTest effect, resolving all file paths
to their real filesystem targets by following symlinks.
- Bool ops (
exists,isDirectory,isRegularFile): resolve path; returnOk(false)for dangling symlinks. isSymbolicLink: passed through unchanged (always checks the link itself).