FbwfFindNextEx (Standard 7 SP1)

7/8/2014

FbwfFindNextEx returns the next entry of files and folders that are currently cached by the write filter. It is used after FbwfFindFirstEx.

The call will return the size allocated for the cache entry and a flag indication whether there are handles open against a file.

Syntax

ULONG WINAPI FbwfFindNextEx(
   __in FBWF_FIND_FILE_HANDLE FindHandle,
   __out_bcount(*CacheDetailSize) PFbwfCacheDetailEx CacheDetail,
   __inout PULONG CacheDetailSize
);

Parameters

  • FindHandle
    [in] The search handle returned by a previous call to the FbwfFindFirstEx function.
  • CacheDetail
    [out] Caller allocated buffer that contains cache detail.
  • CacheDetailSize
    [in, out] On input, contains the size of CacheDetail. If the function returns ERROR_MORE_DATA, size contains the size in bytes of the required buffer.

Return Value

This function may return the following:

Return value

Description

ERROR_SUCCESS

The operation completed successfully.

ERROR_MORE_DATA

If the CacheDetail buffer is too small, the size parameter points to a ULONG that contains the required buffer size.

Requirements

OS Versions: Standard 7

Header: Fbwfapi.h

Link Library: Fbwflib.lib

See Also

Reference

FbwfFindFirstEx

Concepts

FBWF API