copy_tree

Function copy_tree 

Source
pub fn copy_tree(src: impl AsRef<Path>, dst: impl AsRef<Path>) -> Result<()>
Expand description

Recursive fn to copy all the content of a directory to another one.

  • src - The source directory.
  • dst - The destination directory.