diff --git a/DNN Platform/Library/Services/Installer/Util.cs b/DNN Platform/Library/Services/Installer/Util.cs index a8c06e751c4..c38307e7a77 100644 --- a/DNN Platform/Library/Services/Installer/Util.cs +++ b/DNN Platform/Library/Services/Installer/Util.cs @@ -575,9 +575,6 @@ public static string UnInstallURL(int tabId, int packageId) /// The Destination file public static void WriteStream(Stream sourceStream, string destFileName) { - //Delete the file - FileSystemUtils.DeleteFile(destFileName); - var file = new FileInfo(destFileName); if (file.Directory != null && !file.Directory.Exists) file.Directory.Create();