dbxFileInfo.h
Doc
#include <oedbx/dbxCommon.h>

class AS_EXPORT DbxFileInfo
{ public :
DbxFileInfo(InStream ins, int4 address, int4 length);
~DbxFileInfo();
 
const char * GetFolderName() const;
std::string GetFileInfoTime() const;
 
void ShowResults(OutStream outs) const;
 
private :
void init();
void readFileInfo(InStream ins);
 
//data
int4 Address, Length;
int1 * buffer;
} ;

Description

DbxFileInfo(InStream ins, int4 address, int4 length)

Reads in the file info object. This object is stored behind the file header object. The length is stored in the file header(7).

const char * GetFolderName() const

Returns the folder name stored in the file info object of message dbx files.

std::string GetFileInfoTime() const

Returns the creation time stored in the file info object of folders.dbx files.

void ShowResults(OutStream outs) const

I used this function to log my results while I tried to decode the dbx file format.


Home of OE dbx file format