diff --git a/src-tauri/src/unzip.rs b/src-tauri/src/unzip.rs index e35277f..5f7a653 100644 --- a/src-tauri/src/unzip.rs +++ b/src-tauri/src/unzip.rs @@ -28,7 +28,10 @@ pub fn unzip(zipfile: &str, zippath: &str, destpath: &str) { Ok(zipData) => zipData, Err(e) => { println!("Could not find zip file: {}", e); + println!("Path: {}", zippath); return; } }; + + println!("Zip: {}", zipData.size()); } \ No newline at end of file