PDA

View Full Version : A DIR List maker ?


DDR-PIII
05-10-03, 02:48 PM
Does anyone know of an app that can makea list of whats in a specific DIR ?

Maximouse
05-10-03, 02:56 PM
Originally posted by DDR-PIII
Does anyone know of an app that can makea list of whats in a specific DIR ?

Try PrintDir. Freeware:)

Here:http://www.veldten.info/

NookieN
05-10-03, 03:02 PM
Open the command prompt (cmd in Win2k and XP), cd to the directory you want and type

dir

If you want to save the output to a file type

dir > dirlist.txt

If you want files in all of the subdirectories of that directory type

dir /s > dirlist.txt

DDR-PIII
05-10-03, 04:54 PM
thanks for both of those guys :)

mrpops2ko
05-11-03, 05:11 AM
Yeah I might try them