copytool copies files hell-bent for leather
Project description
copytool
copytool copies files hell-bent for leather
Tested+compiled against Windows 10 / Python 3.10 / Anaconda
TeraCopy needs 4 minutes, copytool does it 6 seconds
CLI
Example: copytool --src "C:\ProgramData\anaconda3\envs" --dst "e:\envbackup" --use_tqdm 1 --copy_date 1 --copy_permission 0 --overwrite 1
--src str (source folder)
--dst str (destination folder)
--log str "" (csv log)
--copy_date int 0 (copy date stats)
--copy_permission int 0 (copy permissions)
--use_tqdm int 1 (show progress bar)
--overwrite int 1 (overwrite existing files in dst)
Python
# pip install copytool
from copytool import get_all_files_on_hdd_and_copy
get_all_files_on_hdd_and_copy(
src = r"C:\path",
dst = r"e:\dest",
log = "c:\\copylog.csv",
copy_date= 1,
copy_permission= 0,
use_tqdm = 1,
overwrite = 1,
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
copytool-0.11.tar.gz
(17.9 kB
view hashes)
Built Distribution
copytool-0.11-py3-none-any.whl
(27.1 kB
view hashes)