ioa747,
You had noted,
Func _CreateTextListing($SetNameWave)
Local $MyT1List = ''
; Assign $MyPath to $MyT1List and create the array
$MyT1List = _FileListToArray($SetNameWave) ; ⚠ there is no file mask , cach all file ??
If Not @error Then
; Create the data file
_FileCreate($SetNameWave & "\FileListing.txt")
; Write the array to the data file
_FileWriteFromArray($SetNameWave & "\FileListing.txt", $MyT1List)
EndIf
EndFunc ;==>_CreateTextListing
; -----------------------------------------------
Would this be an acceptable "fix"?
$MyT1List = _FileListToArray($SetNameWave & "*.wav")