Friday, November 11, 2005

Drives Enumerator

Drives enumerator is command line (DOS) program that enumerates the current in use drive letters on a Windows system. It ignores floppy drives but does include currently mapped network drives.

It writes to STDOUT making it ideal for scripting. For example :

for /F "usebackq" %%i in (`drives`) do tree %%i:\ > tree_%%i.txt

will write a directory tree of each drive to tree_drive.txt

Download drives enumerator (8kb)

Comments: Post a Comment

<< Home

This page is powered by Blogger. Isn't yours?