Open Notepad and write this:
- Code: Select all
dir /b>files.txt
Save the file as a .bat -file to the folder which' contents you want to list.
Then double-click that file and it opens command prompt and closes it immediately.
After this you can find the file files.txt from your folder, with the names of all your files in that folder!
And if you want to search for just one type of files, for example .bmp -files, write:
- Code: Select all
dir *.bmp /b>myBitmaps.txt
This can be very handy for someone of you as it was for me!
