From a988d54619ba9fc1948673b26f29089852aee9d8 Mon Sep 17 00:00:00 2001 From: glax Date: Fri, 19 May 2023 20:14:21 +0200 Subject: [PATCH] Cleanup temp-dir after download --- Tranga/Connector.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Tranga/Connector.cs b/Tranga/Connector.cs index 2a61164..24bd845 100644 --- a/Tranga/Connector.cs +++ b/Tranga/Connector.cs @@ -94,6 +94,7 @@ public abstract class Connector } ZipFile.CreateFromDirectory(tempFolder, fullPath); + Directory.Delete(tempFolder); //Cleanup }