From 585a17573c4396870f84e38fb5a7d5ca1fffdaae Mon Sep 17 00:00:00 2001 From: SpikeHD Date: Sun, 15 May 2022 17:04:39 -0700 Subject: [PATCH] wip --- src-tauri/src/unzip.rs | 3 +++ 1 file changed, 3 insertions(+) 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