any one have a recursive file scanner that can accept wild cards and search all directories below it and return file name and path, for windows.? i tried looking for one but i have not founld one.
Printable View
any one have a recursive file scanner that can accept wild cards and search all directories below it and return file name and path, for windows.? i tried looking for one but i have not founld one.
I don't think there is a built-in one, but I'm sure you can find such a thing on web pages like cplusplus.com or sourceforge.net. If not you can easily write your own using FindFirstFile/FindNextFile.