Fs.MoveFile
eff MoveFileSourceAn effect used to move (rename) a file or directory.
Use the MoveFile.runWithFileWrite handler.
Operations
def moveWith(src: { src = String }, dst: String, opts: Set[MoveOption]): Result[IoError, Unit] \ MoveFile
SourceMoves (renames) the file or directory src to dst with the given options.
Definitions
def move(src: { src = String }, dst: String): Result[IoError, Unit] \ MoveFile
SourceConvenience function: moves src to dst with no options.
def runWithFileWrite(f: Unit -> a \ ef): a \ (ef - MoveFile) + FileWrite
SourceHandles the MoveFile effect of the given function f using the FileWrite effect.