Exemple #1
0
 public void AddDirEntry(ScsHashEntry entry)
 {
     if (_rootDirectory == null)
     {
         _rootDirectory = new ScsDirectory(entry, "");
     }
     else
     {
         _rootDirectory.AddDirEntry(entry);
     }
 }
Exemple #2
0
 public ScsFile(ScsHashEntry entry, string path)
 {
     Entry      = entry;
     _entryPath = path;
 }