|
GetNextFileInfo |
Top Previous Next |
|
Iterates through the entries in the composite file.
Parameters
pbstrName [out] Full path of the file relative to the composite file.
pbstrKey [out] Unique identifier used to extract the file from the composite file.
pfSize [out] Size of the file in bytes.
pdtModified [out] Last modified date of the file.
Return Value
S_OK File was successfully returned. CINT_S_NOMOREFILES No more files left in list. E_FAIL An error occurred.
Remarks
Composite interpreter rules:
When GetNextFileInfo has reached the end of the file list it should return CINT_S_NOMOREFILES which is defined as:
const HRESULT CINT_S_NOMOREFILES = MAKE_HRESULT( SEVERITY_SUCCESS, FACILITY_ITF, 0x0101);
|