Esempio n. 1
0
 public void SetExtractPath(Entry entry, string destinationPath)
 {
     if (destinationPath != null)
     {
         ExtractPaths.Add(entry, destinationPath);
         if (ArchiveHelpers.IsPlugin(destinationPath))
         {
             PluginPaths.Add(destinationPath);
         }
         else if (ArchiveHelpers.IsArchive(destinationPath))
         {
             ArchivePaths.Add(destinationPath);
         }
     }
 }
Esempio n. 2
0
 public void ClearExtractPaths()
 {
     ExtractPaths.Clear();
     PluginPaths.Clear();
     ArchivePaths.Clear();
 }