Fs.CopyFile
eff CopyFileSourceAn effect used to copy a file.
Use the CopyFile.runWithFileWrite handler.
Operations
def copyWith(src: { src = String }, dst: String, opts: Set[CopyOption]): Result[IoError, Unit] \ CopyFile
SourceCopies the file src to dst with the given options.
Definitions
def copy(src: { src = String }, dst: String): Result[IoError, Unit] \ CopyFile
SourceConvenience function: copies src to dst with no options.
def runWithFileWrite(f: Unit -> a \ ef): a \ (ef - CopyFile) + FileWrite
SourceHandles the CopyFile effect of the given function f using the FileWrite effect.