When I try to extract my zip that I just downloaded from server I get System.IO.IOException Process cant access file "myappsolution".exe because it is used by another process.
WebClient webClient = new WebClient();
var client = new WebClient();
System.Threading.Thread.Sleep(5000);
client.DownloadFile("server", @"myzip.zip");
FastZip fastZip = new FastZip();
ZipStrings.CodePage = (Encoding.GetEncoding(System.Globalization.CultureInfo.CurrentCulture.TextInfo.OEMCodePage).CodePage);
fastZip.ExtractZip(zipPath, extractPath, null);