In VBA, how do I get a list of all the files with a specific extension in a specific directory?
i am unable to do Application.FileSearch, because i am u
Application.FileSearch
Dir("C:\yourPath\*.ESY", vbNormal) Returns the first file with esy extension. Each subsequent call to Dir() returns the next.