Function Reference


_WinAPI_FindNextFile

Continues a file or directory search

#include <WinAPIFiles.au3>
_WinAPI_FindNextFile ( $hSearch, $tData )

Parameters

$hSearch The search handle returned by a previous call to the _WinAPI_FindFirstFile() function.
$tData A $tagWIN32_FIND_DATA structure or a pointer to it that receives information about a found file or directory.

Return Value

Success: True.
Failure: False and sets the @error flag to non-zero, @extended flag may contain the system error code.

Remarks

The order in which the search returns the files, such as alphabetical order, is not guaranteed.
If the data must be sorted, the application must do the ordering after obtaining all the results.

If the function fails because no more matching files can be found, the @extended flag will contain ERROR_NO_MORE_FILES (18) system error code.

Related

_WinAPI_FindFirstFile

See Also

Search FindNextFile in MSDN Library.

Example

#include <Array.au3>
#include <MsgBoxConstants.au3>
#include <WinAPIConv.au3>
#include <WinAPIError.au3>
#include <WinAPIFiles.au3>

Local $aList[101][2] = [[0]]

Local $tData = DllStructCreate($tagWIN32_FIND_DATA)

Local $sFile
Local $hSearch = _WinAPI_FindFirstFile(@ScriptDir & '\*', $tData)
While Not @error
        $sFile = DllStructGetData($tData, 'cFileName')
        Switch $sFile
                Case '.', '..'

                Case Else
                        If Not BitAND(DllStructGetData($tData, 'dwFileAttributes'), $FILE_ATTRIBUTE_DIRECTORY) Then
                                $aList[0][0] += 1
                                If $aList[0][0] > UBound($aList) - 1 Then
                                        ReDim $aList[UBound($aList) + 100][2]
                                EndIf
                                $aList[$aList[0][0]][0] = $sFile
                                $aList[$aList[0][0]][1] = _WinAPI_MakeQWord(DllStructGetData($tData, 'nFileSizeLow'), DllStructGetData($tData, 'nFileSizeHigh'))
                        EndIf
        EndSwitch
        _WinAPI_FindNextFile($hSearch, $tData)
WEnd

Switch @extended
        Case 18 ; ERROR_NO_MORE_FILES

        Case Else
                Local $iError = @error
                Local $iExtended = @extended
                MsgBox(($MB_ICONERROR + $MB_SYSTEMMODAL), "Error = " & $iError, _WinAPI_GetErrorMessage($iExtended))
                Exit
EndSwitch

_WinAPI_FindClose($hSearch)

_ArrayDisplay($aList, '_WinAPI_Find...', $aList[0][0])