Is there a program/app that will index or list all files on a computer?

tankman1989

Active Member
Reaction score
5
I' wondering if there is a program that will create a list of filenames and file structure of a computer. Basically it just saves the file name, extension, file size and maybe any other attributes you select it to save to file into a text file or xml file. I've tried searching and unless there isn't a program that does this, I'm using the wrong search terms.

Does anyone have any ideas on this or provide ideas for searching?

I've tried "program app list index file system filename" and a combo of those terms.
 
There are tons of these on Google.

I like Directory List and Print.

I put Everything on most computers, but I don't think it saves or prints.
 
If I've understood you correctly, then all you need to do is to open a command prompt, then

DIR C:\*.* /a /s >directory.txt

All output will be parsed into the file 'directory.txt'. Long list, but it will give you raw text to work with.

Andy
 
If I've understood you correctly, then all you need to do is to open a command prompt, then

DIR C:\*.* /a /s >directory.txt

All output will be parsed into the file 'directory.txt'. Long list, but it will give you raw text to work with.

Andy

haha bet me to it :)

^this!!
 
If I've understood you correctly, then all you need to do is to open a command prompt, then

DIR C:\*.* /a /s >directory.txt

All output will be parsed into the file 'directory.txt'. Long list, but it will give you raw text to work with.

Andy

DDUUUHHHH!:o I was thinking too advanced and missed the simple solution! If I would have been thinking in Linux terms I would most likely have thought to use the OS to do the procedure.

Thanks!
 
DDUUUHHHH!:o I was thinking too advanced and missed the simple solution! If I would have been thinking in Linux terms I would most likely have thought to use the OS to do the procedure.

Thanks!

umm... thats originally DOS. you can do it from Command Prompt on any PC.


..........................
 
Last edited:
DDUUUHHHH!:o I was thinking too advanced and missed the simple solution! If I would have been thinking in Linux terms I would most likely have thought to use the OS to do the procedure.

Thanks!
Most Linux distros already do this to keep a database and have a cron job to update it nightly or so.
$ locate "File Name"
 
Back
Top