https://github.com/programordie2/rust-file-stealer
A fast file collector and zipper writen in Rust
https://github.com/programordie2/rust-file-stealer
Last synced: about 1 year ago
JSON representation
A fast file collector and zipper writen in Rust
- Host: GitHub
- URL: https://github.com/programordie2/rust-file-stealer
- Owner: programORdie2
- License: mit
- Created: 2024-04-16T18:54:33.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-06T20:41:24.000Z (over 1 year ago)
- Last Synced: 2024-09-07T00:08:26.862Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 17.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust File Stealer
## Collect ("steal") and zip files in just seconds
Easy find all the files on a computer and put them in a ZIP file with this program.
## How to install?
### Clone this repo
```
git clone https://github.com/programORdie2/Rust-File-Stealer.git
cd Rust-File-Stealer
```
### Run the file
```
cargo build
cargo run
```
That's it!
## Options
### Compression type
Sets the compression type (0 none [fastest, biggest file size], 1 deflated [slower, smaller], 2cbzip [slowest, smallest file size]), default is 1.
Example:
```
cargo run -- --compression 0
```
### Max scan size
Defines the max file size the program should copy in MB, default is 5.
Example:
```
cargo run -- --max_size 2
```
### Scan USB drives or other stations too
If the program should scan all mounted drives, use this flag, default is false.
Example:
```
cargo run -- --drives
```
## Notes
- Currently, this project only works on windows.
- I forgot to test the drives function.
**That's it, I hope you like it! Feel free to [contact me](https://pod.stio.studio/#contact) if you find any bugs.**