#copy #directory #permissions #recursive

cp_r

Copy files and directories recursively, preserving mtime and permissions

8 releases (4 breaking)

0.5.1 Mar 25, 2022
0.5.0 Feb 15, 2022
0.4.0 Dec 1, 2021
0.3.1 Nov 8, 2021
0.1.1 Oct 24, 2021

#1145 in Filesystem

Download history 118/week @ 2023-05-15 170/week @ 2023-05-22 208/week @ 2023-05-29 179/week @ 2023-06-05 169/week @ 2023-06-12 165/week @ 2023-06-19 144/week @ 2023-06-26 192/week @ 2023-07-03 164/week @ 2023-07-10 135/week @ 2023-07-17 198/week @ 2023-07-24 84/week @ 2023-07-31 72/week @ 2023-08-07 177/week @ 2023-08-14 126/week @ 2023-08-21 156/week @ 2023-08-28

552 downloads per month
Used in 2 crates

MIT license

20KB
229 lines

Rust cp_r

https://github.com/sourcefrog/cp_r/

Docs Tests cargo-audit crates.io Maturity: Beta

A small Rust library to copy a directory tree preserving mtimes and permissions, with minimal dependencies, and with clean error reporting.

Features

  • Minimal dependencies: currently just filetime to support copying mtimes.
  • Returns a struct describing how much data and how many files were copied.
  • Tested on Linux, macOS and Windows.
  • Copies mtimes and permissions.
  • Takes an optional callback to decide which entries are copied or skipped, CopyOptions::filter.
  • Takes an optional callback to show progress or record which files are copied, CopyOptions::after_entry_copied.

See the docs for more information.

Patches welcome!

License: MIT.

Dependencies

~0–8MB
~55K SLoC