Fs.DeleteFile
eff DeleteFileSourceAn effect used to delete a file.
Use the DeleteFile.runWithFileWrite handler.
Operations
def delete(f: String): Result[IoError, Unit] \ DeleteFile
SourceDeletes the given file f.
Fails if the file does not exist.
Definitions
def runWithFileWrite(f: Unit -> a \ ef): a \ (ef - DeleteFile) + FileWrite
SourceHandles the DeleteFile effect of the given function f using the FileWrite effect.