lists files and\or folders in a specified path (Similar to using Dir with the /B Switch)
#include <File.au3>
_FileListToArray($sPath [, $sFilter [, $iFlag]])
Parameters
$sPath | Path to generate filelist for. |
$sFilter | Optional the filter to use, default is *. Search the Autoit3 helpfile for the word "WildCards" For details. |
$iFlag | Optional: specifies wheather to return files folders or both $iFlag=0(Default) Return both files and folders $iFlag=1 Return files only $iFlag=2 Return Folders only |
Return Value
@Error: | 1 = Path not found or invalid |
2 = Invalid $sFilter | |
3 = Invalid $iFlag | |
4 = No File(s) Found |
Remarks
The array returned is one-dimensional and is made up as follows:
Related
None.
Example
#Include <File.au3>
#Include <Array.au3>
$FileList=_FileListToArray(@DesktopDir)
If (Not IsArray($FileList)) and (@Error=1) Then
MsgBox (0,"","No Files\Folders Found.")
Exit
EndIf
_ArrayDisplay($FileList,"$FileList")