Re: Search like in windows
The only simple way is to do a recursive search through the file system for files with the desired extension(s). Anything else would require indexing all the files on the hard drive prior to the search being conducted.
Re: Search like in windows
There is a nice codebank example by <ABX about recursive file search
http://www.vbforums.com/showthread.p...ht=file+search
Re: Search like in windows
Thx for the link Phill, just one question, if i want to find all the files in the folder or subfolders what do i write instead of the files extension?
Re: Search like in windows
Man, I did a project using a recursive function that lists every file on a computer's hard drive along with other things, could easily be modified to list only certain extensions... problem is... the code is long gone in reformatville... it was pretty nifty.. maybe i'll try to work something out....
Re: Search like in windows
Well would you lookey here... check this thread...
http://www.vbforums.com/showthread.php?t=341919
Re: Search like in windows