You can run this snippet in Powershell in any folder (on Windows) and it will create a CSV with all filenames in that folder.
Get-ChildItem -File | Select-Object Name, FullName, Length, LastWriteTime | Export-Csv -Path ".\FileList.csv" -NoTypeInformation -Encoding UTF8 -Delimiter ";"