[][src]Crate more_fs

Enums

Error

Functions

copy

A wrapper for the standard library's copy. Will fail with a custom error that includes the source error, path, and operation

copy_create

A wrapper around copy that will also create the parent directories of the file if they do not exist

copy_dir_all

Recursively copies all contents of the directory to another directory. Will create the new directory if it does not exist

copy_dir_all_par
create_dir
create_dir_all

A wrapper for the standard library's create_dir_all. Will fail with a custom error that includes the source error, path, and operation

move_dir_all

Moves a directory from one place to another recursively. Currently is a wrapper around copy_dir_all but removes the from directory

move_file

Moves a file from one place to another. Currently is a wrapper around copy but removes the from argument

remove_dir_all

A wrapper for the standard library's remove_dir_all. Will fail with a custom error that includes the source error, path, and operation

remove_file

A wrapper for the standard library's remove_file. Will fail with a custom error that includes the source error, path, and operation

Type Definitions

Result