I am writing an application which will search for for files with special filename extension on computer. (JPG for example). Input data: "D:", ".JPG" Output: txt file with results(file directories); I know one simple reccursive algo, but may be there is smth better.So, may be you tell me an efficient algorithm to traverse the file directory. Also i want to use multithreading for solving this problem to make better performance. But how many threads should i use? If i will use 1 thread for 1 directory - this will be stupid...
thanks for advices.
|
| |||
feedback
|
|
The recursive option you name is the only way to go, unless you want to get your hands dirty with the file system. I suspect you don't. Regarding thread performance, your best choice is to make the number of threads configurable, create some sample directories, and measure performance for each setting. By the way, most file-finders create an index of files. They scan the disc on a schedule, and update a file which contains the relevant information about the files and directories on disk. The file is in a format designed to facilitate searching. This index file is used to perform actual searches. If you're planning on repeatedly running this search against the same directory, you should do this. | |||||
feedback
|