...hm
ich kriegs einfach nicht zum laufen!
#Include <File.au3>
#Include <Array.au3>
$filepath = "C:\Users\Public\Pictures\Sample Pictures"
$OST_OSA1 =_FileListToArray($filepath,"*.jpg",1)
$OST_OSA2 =_FileListToArray($filepath,"*.gif",1)
If @Error= 1 Then
MsgBox (0,"","Path not found or invalid",1)
Exit
EndIf
If @Error= 4 Then
MsgBox (0,"","No Files Found.",1)
Exit
EndIf
_ArrayDisplay($OST_OSA,"$FileList")
For $x = 2 to $OST_OSA[0]
Msgbox(0,'Record:', $OST_OSA[$x],1)
Next