Skip to content

Binary Loading

terminal-cs edited this page Oct 17, 2022 · 3 revisions

Tar/FileType enum

This enumerator marks all the possible states for a file in the TARFile class.

  • The possible States
    • NormalFile
    • HardLink
    • SymbolicLink
    • DeviceOrSpecialFile
    • BlockDevice
    • Directory
    • NamedPipe

Tar/Header struct

This structure is created from the raw data of a tar file, which makes it easier to read the information of a tar file instead of guessing indexes at arrays for certain data.


Tar/TARFile

This class is the main loader for tar files, it loads the input bytes into a tar header struct and loads all the files into a dictionary.


Clone this wiki locally