The ExtractFilesEx method extracts the embedded .cab file from a module and then writes those files to the destination directory. For more information, see the ExtractFilesEx method of the Merge object.
Syntax
C++HRESULT ExtractFilesEx(
[in] BSTR Path,
[in] VARIANT_BOOL fLongFileNames,
[out] IMsmStrings **pFilePaths
);
Parameters
- Path [in]
-
The fully qualified destination directory. A LPCWSTR may be used in place of a BSTR.
- fLongFileNames [in]
-
Set to specify using long file names for path segments and final file names.
- pFilePaths [out]
-
A pointer to a memory location. This memory location receives a second pointer to a string enumerator containing a list of fully-qualified paths for the files that were extracted. The list is empty if no files can be extracted. This argument may be null. No list is provided if pFilePaths is Null.
Return Value
The method can return one of the following values.
Value | Meaning |
---|---|
|
Could not create the output path. |
|
Could not create the output file. |
|
Could not write data to the output file. |
|
Unable to access embedded .cab file, or create temporary file. |
|
No embedded .cab file was found. |
|
The function succeeded. |
Remarks
Any files in the destination directory with the same name are overwritten. The path is created if it does not already exist.
Requirements
Version | Mergemod.dll 2.0 or later |
---|---|
Header | Mergemod.h |
DLL | Mergemod.dll |
IID | IID_IMsmMerge2 is defined as 351A72AB-21CB-47ab-B7AA-C4D7B02EA305 |
See Also
Send comments about this topic to Microsoft
Build date: 8/13/2009
© 2009 Microsoft Corporation. All rights reserved.