Nifty way to list files of a folder into a text file

So, I thought to share this nifty trick I found when searching for a way to list all the wallpaper files for my lcl OS to a text file.
Open Notepad and write this:
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:
This can be very handy for someone of you as it was for me!
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!
