Does anyone know of an app that can makea list of whats in a specific DIR ?
DDR-PIII Disabled Joined Feb 16, 2002 Location 6p6 May 10, 2003 #1 Does anyone know of an app that can makea list of whats in a specific DIR ?
Maximouse Member Joined Aug 15, 2002 Location Toronto, Canada May 10, 2003 #2 DDR-PIII said: Does anyone know of an app that can makea list of whats in a specific DIR ? Click to expand... Try PrintDir. Freeware Here:http://www.veldten.info/ Last edited: May 10, 2003
DDR-PIII said: Does anyone know of an app that can makea list of whats in a specific DIR ? Click to expand... Try PrintDir. Freeware Here:http://www.veldten.info/
NookieN Member Joined Jul 14, 2002 Location The West May 10, 2003 #3 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
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
OP DDR-PIII Disabled Joined Feb 16, 2002 Location 6p6 May 10, 2003 Thread Starter #4 thanks for both of those guys