#permissions #directory #copy #directory-tree #recursion

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

#1406 in Filesystem

Download history 215/week @ 2024-01-04 458/week @ 2024-01-11 183/week @ 2024-01-18 172/week @ 2024-01-25 190/week @ 2024-02-01 117/week @ 2024-02-08 114/week @ 2024-02-15 290/week @ 2024-02-22 227/week @ 2024-02-29 237/week @ 2024-03-07 113/week @ 2024-03-14 154/week @ 2024-03-21 115/week @ 2024-03-28 289/week @ 2024-04-04 264/week @ 2024-04-11 241/week @ 2024-04-18

920 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–7.5MB
~42K SLoC