IAppxBlockMapReader::GetFile method (appxpackaging.h)

Retrieves data corresponding to a file in the block map with the specified file name.

Syntax

HRESULT GetFile(
  [in]          LPCWSTR           filename,
  [out, retval] IAppxBlockMapFile **file
);

Parameters

[in] filename

Type: LPCWSTR

The name of the file.

[out, retval] file

Type: IAppxBlockMapFile**

The data about the file's attributes and blocks.

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.

Return code Description
HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)
The specified file name does not match the name of a file listed in the block map.

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

See also

IAppxBlockMapReader