Fs.MkTempDir
eff MkTempDirSourceAn effect used to create a temporary directory.
Use the MkTempDir.runWithFileWrite handler.
Operations
def mkTempDir(prefix: String): Result[IoError, String] \ MkTempDir
SourceCreates a new temporary directory with the given prefix.
Returns the path to the directory.
Definitions
def runWithFileWrite(f: Unit -> a \ ef): a \ (ef - MkTempDir) + FileWrite
SourceHandles the MkTempDir effect of the given function f using the FileWrite effect.