file header
-
hi all. how to get information hidden in the header of a file or how to get information about the signature (name, version, creation date, modified date etc)of a file muhammad mahmood ilyas
-
hi all. how to get information hidden in the header of a file or how to get information about the signature (name, version, creation date, modified date etc)of a file muhammad mahmood ilyas
Depends on the file type. For a description of file types you might check this link. Basically you craete a
BinaryReader
. You can then read the complete header withReadBytes(count)
and convert them yourself, or you can read them information by information, likeReadInt
,ReadBoolean
etc. regards -
hi all. how to get information hidden in the header of a file or how to get information about the signature (name, version, creation date, modified date etc)of a file muhammad mahmood ilyas