Kernel32FindNextStreamW Method

Continues a stream search started by a previous call to the FindFirstStreamW(String, FindStreamInfoLevels, FindStreamData, UInt32) function.

Definition

Namespace: DevCase.Win32.NativeMethods
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", CharSet = CharSet.Auto, ExactSpelling = true, 
	SetLastError = true)]
public static bool FindNextStreamW(
	SafeFindHandle findFile,
	FindStreamData findStreamData
)

Parameters

findFile  SafeFindHandle
The search handle returned by a previous call to the FindFirstStreamW(String, FindStreamInfoLevels, FindStreamData, UInt32) function.
findStreamData  FindStreamData
A pointer to the FindStreamData structure that receives information about the stream.

Return Value

Boolean
If the function succeeds, the return value is .

If the function fails, the return value is .

To get extended error information, call GetLastWin32Error.

If no more streams can be found, GetLastWin32Error returns ERROR_HANDLE_EOF (38).

Remarks

See Also