Fs.IsExecutable
eff IsExecutableSourceAn effect used to check if a file is executable.
Use the IsExecutable.runWithFilePermission handler.
Operations
def isExecutable(f: String): Result[IoError, Bool] \ IsExecutable
SourceReturns true if the given file f is executable.
Definitions
def runWithFilePermission(f: Unit -> a \ ef): a \ (ef - IsExecutable) + FilePermission
SourceHandles the IsExecutable effect of the given function f using the FilePermission effect.