index directory
(Click here to view the original thread with full colors/images)Posted by: VM0824
how can i get an index of a directory, its subdirectories, and the files in them
Posted by: Snee
What do you need it for?
If you are going to send it to someone or so you can always create a checksum for it :unsure:
Posted by: VM0824
i just want to make a list of files and directories they're in
Posted by: Ariel_001
i just want to make a list of files and directories they're in
In the command prompt:
dir /b /s >list.txt
Posted by: ObiWan
you could also use
tree /f /a >list.txt
Posted by: VM0824
wow that tree thing is really awesome...thx much
