Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

WofFileEnumFiles function

Enumerates all of the files which are compressed with a specified compression algorithm on a specified volume.

Syntax


HRESULT WINAPI WofFileEnumFiles(
  _In_     PCWSTR           VolumeName,
  _In_     ULONG            Algorithm,
  _In_     WofEnumFilesProc EnumProc,
  _In_opt_ PVOID            UserData
);

Parameters

VolumeName [in]

A full path to the volume containing the files to enumerate.

Algorithm [in]

The compression algorithm to enumerate. For a list of valid compression algorithms, see WOF_FILE_COMPRESSION_INFO_V1. If this value is MAX_ULONG, files compressed with any supported compression algorithm will be returned.

EnumProc [in]

The callback function for each data source. The enumeration will stop if EnumProc returns FALSE.

UserData [in, optional]

User defined data passed to EnumProc.

Return value

If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Header

Wofapi.h

Library

Wofutil.lib

DLL

Wofutil.dll

See also

FSCTL_ENUM_EXTERNAL_BACKING

 

 

Show:
© 2017 Microsoft