public NtfsStructureFileSystem()
 {
     StructureSectors.Add(new SectorStructureFileSystem {
         Name = "NTFS Boot Sector", HelpText = "Contains various information about the logical organization of the support."
     });
     StructureSectors.Add(new SectorStructureFileSystem {
         Name = "Master File Table (MFT)", HelpText = "All information about a file, including its size, time and date stamps, permissions, and data content, is stored either in MFT entries."
     });
     StructureSectors.Add(new SectorStructureFileSystem {
         Name = "File System Data", HelpText = "Specifies how clusters are organized based on files and directories."
     });
     StructureSectors.Add(new SectorStructureFileSystem {
         Name = "Master File Table Copy", HelpText = "Area where directory and file data are stored. The data savec here, remain present even if files or directories are deleted."
     });
 }
Example #2
0
 public RootFileDirectoryStructure()
 {
     StructureSectors.Add(new StructureSector("short file name", 8));
     StructureSectors.Add(new StructureSector("file extension", 3));
     StructureSectors.Add(new StructureSector("attribut", 1));
     StructureSectors.Add(new StructureSector("reserved", 1));
     StructureSectors.Add(new StructureSector("file created time (ms)", 1));
     StructureSectors.Add(new StructureSector("created time", 2));
     StructureSectors.Add(new StructureSector("created date", 2));
     StructureSectors.Add(new StructureSector("access date", 2));
     StructureSectors.Add(new StructureSector("first cluster high", 2));
     StructureSectors.Add(new StructureSector("write time", 2));
     StructureSectors.Add(new StructureSector("write date", 2));
     StructureSectors.Add(new StructureSector("first cluster low", 2));
     StructureSectors.Add(new StructureSector("file size", 4));
 }
Example #3
0
 public FatStructureFileSystem()
 {
     StructureSectors.Add(new SectorStructureFileSystem {
         Name = "Boot Sector", HelpText = "Contains various information about the logical organization of the support."
     });
     StructureSectors.Add(new SectorStructureFileSystem {
         Name = "Reserved"
     });
     StructureSectors.Add(new SectorStructureFileSystem {
         Name = "File Allocation Table (FAT)", HelpText = "Specifies how clusters are organized based on files and directories."
     });
     StructureSectors.Add(new SectorStructureFileSystem {
         Name = "Mirror FAT", HelpText = "Copy of File Allocation Table for redundancy."
     });
     StructureSectors.Add(new SectorStructureFileSystem {
         Name = "Root Directory", HelpText = "The Root directory is the area where all directory and file information is stored."
     });
     StructureSectors.Add(new SectorStructureFileSystem {
         Name = "Data Area", HelpText = "Area where directory and file data are stored. The data save here, remain present even if files or directories are deleted."
     });
 }