How to create list of files in a folder?

Status
Not open for further replies.

Maxfx

Broken In
I often need to create list of files inside a folder, which is a tedious and time taking job
especiall when the no. of files inside a folder is very large. Is there any software free or paid that can do this job for me? Thanx in advance.
 

sakumar79

Technomancer
Go to DOS prompt (enter 'cmd' in run box of Win XP or 'command' in run box of earlier Windows version...

Type 'dir /?' to get an idea of what are the options to get directory listing...

Enter 'dir <parameters> >filename.txt' to get the directory listing output to the required file...

For example, if you want a list of all the files in the directory and all subdirectories, and store it list.txt file, enter 'dir /s >list.txt'

Arun
 

Krazzy Warrior

"Aal Izz Well"
1. Open Notepad and create a blank file filelist.txt in C:\

2. Open Another Notepad and copy-paste the following data in it.

cd %1
dir /a /b /-p /o:gen >C:\filelist.txt
start notepad C:\filelist.txt

Save the file with name Krazzy Warrior.bat and save it anywhere you wish (in folder whose list u want to create).then open the folder and click on the bat file and u will get ur list created..
 
Status
Not open for further replies.
Top Bottom