-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve ratelimiting, add recursive uploads (#13)
# Bugs and Debugging Improves rate limiting and debugging by slowing down file renames and adding better `--dry-run` support. # Recursive Uploads Adds ability to upload all files in a directory by recursively finding files. All files will be uploaded into one directory and directory structure will be lost. Use `--recurse-directories` for this option in conjunction `--exclude-file-types` or `--only-file-types` to limit the file types that you want to upload. This feature implements the `--recurse-max` flag as a safety measure so you don't upload a whole drive and has a default of 1000 files. If you go over this limit the program will just exit. If you need to upload more files than that you will need to set this flag. # Parallel MD5 Hashing Also introduces the some md5sum hashing improvements (supposedly) by hashing in parallel with a default based on your CPU core count. This can be configured via `--hash-pool-size`. Needs more testing.
- Loading branch information
Showing
7 changed files
with
114 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters