diff --git a/Cargo.toml b/Cargo.toml index 2f25142..fbbd2fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sk_extract" -version = "0.1.0" +version = "0.9.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/main.rs b/src/main.rs index 33503cf..1244242 100644 --- a/src/main.rs +++ b/src/main.rs @@ -44,6 +44,7 @@ fn run() -> i32 { if let Some(extension) = fname.extension().and_then(|s| s.to_str()) { match extension { "zip" => { + //Extract Files from a ZIP archive let output_directory = Path::new("output_directory"); // Change this to your desired output directory if let Err(err) = fs::create_dir_all(&output_directory) { println!("Error creating output directory: {}", err);