Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Adds a new payload file to the app package.
Syntax
HRESULT AddPayloadFile(
[in] LPCWSTR fileName,
[in] LPCWSTR contentType,
[in] APPX_COMPRESSION_OPTION compressionOption,
[in] IStream *inputStream
);
Parameters
[in] fileName
Type: LPCWSTR
The name of the payload file. The file name path must be relative to the root of the package.
[in] contentType
Type: LPCWSTR
The string specifying the content type of fileName.
[in] compressionOption
Type: APPX_COMPRESSION_OPTION
The type of compression to use to store fileName in the package.
[in] inputStream
Type: IStream*
An IStream providing the contents of fileName. The stream must support Read, Seek, and Stat.
Return value
Type: HRESULT
If the method succeeds, it returns S_OK. Otherwise, it returns an error code that includes, but is not limited to, those in the following table. Error OPC codes, in addition to OPC_E_DUPLICATE_PART may result. If the method fails, the package writer will close in a failed state and can't be used any more.
| Return code | Description |
|---|---|
|
The compression option specified by compressionOption is not one of the values of the APPX_COMPRESSION_OPTION enumeration. |
|
The writer is closed. |
|
The file name specified is not a valid file name or is a reserved name for a footprint file. |
|
The file name specified is already in use in the package. |
Remarks
When the AddPayloadFile method succeeds the contents of the specified fileName are written to the package and a corresponding entry is made in the package block map.
AppxManifest.xml, AppxBlockMap.xml, AppxStreamMap.xml, and AppxSignature.p7x.
Also, files with the following reserved folder prefixes cannot be added to the package using the AddPayloadFile method: \AppxMetadata\ and \Microsoft.System.Package.Metadata\.
Examples
For an example, see How to create an app package.
Requirements
| Requirement | Value |
|---|---|
| Minimum supported client | Windows 8 [desktop apps only] |
| Minimum supported server | Windows Server 2012 [desktop apps only] |
| Target Platform | Windows |
| Header | appxpackaging.h |