summaryrefslogtreecommitdiff
path: root/src/operations/cp.rs
Commit message (Collapse)AuthorAge
* Allow copying a file over the top of a symbolic linkBen Bridle2026-02-21
| | | | | | When a symbolic link exists at the destination path when copying a file, the symbolic link has to be manually deleted first else the copy will fail.
* Only copy modified filesBen Bridle2025-02-01
| | | | | | When copying a file, if a file already exists at the destination path with the same last-modified date and the same size, the file is not copied.
* Fix issue when copying a directory to a directoryBen Bridle2025-01-08
| | | | | The copy-contents-of-a-directory logic as using the copy_file function, which would fail if the directory contained another directory.
* Large collection of changesv1.0.0Ben Bridle2023-12-19
|
* Initial commitv1.0Ben Bridle2022-08-25