FILE_IN_CABINET_INFO
[New
- Windows NT]
The FILE_IN_CABINET_INFO
structure provides information about a file found in the cabinet. The SetupIterateCabinet
typedef struct _FILE_IN_CABINET_INFO {
PCTSTR NameInCabinet;
DWORD
FileSize;
DWORD
Win32Error;
WORD
DosDate;
WORD
DosTime;
WORD
DosAttribs;
TCHAR
FullTargetName[MAX_PATH];
} FILE_IN_CABINET_INFO, *PFILE_IN_CABINET_INFO;
Members
NameInCabinet
Specifies the
filename as it exists within the cabinet file.
FileSize
Specifies the
uncompressed size of the file in the cabinet.
Win32Error
If
applicable, the Win32 error value associated with the file in the cabinet.
DosDate
The date that
the file was last saved.
DosTime
The MS-DOS
timestamp of the file in the cabinet.
DosAttribs
The
attributes of the file in the cabinet.
FullTargetName[MAX_PATH]
The target
path and filename.
See Also