Example #1
0
 private void ExtractDllFromZip(string zipPath, string extractPath, string toPath)
 {
     if (!_directoryService.Exists(toPath))
     {
         _directoryService.ExtractToDirectory(zipPath, extractPath);
         _directoryService.Move(extractPath, toPath);
         _directoryService.Delete(zipPath, false);
     }
 }