Thanks for the direction. Going to work in the search part (I can manually do for now). However I got the write to excel part done. If anyone can make the code shorter or more efficient, please advise. Thanks
[#include <Excel.au3>
; Shows the filenames of all files in the current directory.
$search = FileFindFirstFile("*.*")
$i = 0
Local $oExcel = _ExcelBookNew() ;Create new file, make visible
; Check if the search was successful
If $search = -1 Then
MsgBox(0, "Error", "No files/directories matched the search pattern")
Exit
EndIf
While 1
$file = FileFindNextFile($search)
If @error Then ExitLoop
$i = ($i + 1)
MsgBox(4096, "File:", $file);show name before writing to cell
_ExcelWriteCell($oExcel, $file, $i, 1) ;Write to the Cell
WEnd
; Close the search handle
FileClose($search)]