Skip to content

Commit

Permalink
More diagnostics...
Browse files Browse the repository at this point in the history
  • Loading branch information
vchelaru committed Mar 31, 2024
1 parent eb45538 commit 9fe4648
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ public static void CreateZip(IResults results, string destinationDirectory, stri
}

}
results.WriteMessage(" Finished adding files to zip");
results.WriteMessage($" Finished adding {containedObjects} files to zip");

zip.Save(fullZipFileName);

results.WriteMessage(" Finished saving zip file");
results.WriteMessage($" Finished saving zip file to {fullZipFileName}");


Directory.CreateDirectory(destinationDirectory);

results.WriteMessage(" Starting to copy zip file");
results.WriteMessage($" Starting to copy zip file {sourceDirectory} to {zipFileNameNoExtension}.zip");

File.Copy(fullZipFileName, destinationDirectory + zipFileNameNoExtension + ".zip", true);

Expand Down

0 comments on commit 9fe4648

Please sign in to comment.