MoveIt is a Rust-based file management tool that copies files and folders from a specified source directory to a target directory. The source directory is typically an Azure Storage folder, and the target directory is specified via command line arguments.
- Anuj Negi [[email protected]]
- Rust and Cargo installed. You can download them from rust-lang.org.
To build the project, run the following command in the root directory:
cargo build
OR
cargo build --release
To run the project, use the following command:
cargo run
cargo run -- -a <path_to_azure_storage> -t <target_folder_name>
OR
cargo run -- --azure <path_to_azure_storage> --target <target_folder_name>
where,
--azure
or-a
: Path to the Azure Storage folder. If not provided, the program will search for the Storage-xDpuWindows folder in available drives.--target
or-t
: Name of the target folder. If not provided, the current timestamp will be used as the folder name.
To check the version of MoveIt, such pass --version
arguments without any values.
Please create a PR if you want to commit your changes, regardless of any feature, bugs or issues.