- I found that the easiest way to do this is by creating a text file which has a list of all files on the external drive from that directory and saving that info to a file.
- When needed, search the text file which is used as a catalog.
Creation of the catalog is very easy. For your destination path (on the external drive), do the following:
- From the windows start menu, type and search for "cmd"
- This will launch the command window.
- In the command window run the following command:
DIR "F:\path\to\dir" /s > "C:\List.txt"This command assumes that F:\path\to\dir is the directory which you are planning to list. The catalog file is the C:\List.txt file which can be read and searched like a normal text file.
For making a catalog from any directory use something like this in a .bat file:
DIR /s > "Catalog.txt"