Skip to content

NET_SDK_FindNextFile

Interface Definition

1
2
3
LONG NET_SDK_FindNextFile(
    POINTERHANDLE lFindHandle,
    NET_SDK_REC_FILE* lpFindData);
1
2
3
public static extern Int32 NET_SDK_FindNextFile(
    POINTERHANDLE lFindHandle,
    ref NET_SDK_REC_FILE lpFindData);

Function Description

Get the found file information one by one.

Parameter Description

Parameters Type Remark
lFindHandlein POINTERHANDLE File search handle, the return value of NET_SDK_FindFile.
lpFindDataout NET_SDK_REC_FILE* Pointer to save file information, refer to NET_SDK_REC_FILE.

Return Value

  • type:LONG

  • remark:-1 indicates failure, and other values ​​indicate the current acquisition status and other information, corresponding to the value in NET_SDK_ERROR.

Remarks

None

Error Code