|
|
|
re: 'Print Out a Directory Listing' in Win2000
Thursday, June 12, 2003 at 10:36 am Windows 2000 Annoyances Discussion Forum
Posted by Carl Osterwisch
(1 messages posted)
Here's my variation which does not require Registry editing:
Create "dirlisting.cmd":
@echo off
if EXIST %1 goto start
echo Drag and drop files onto this program to grab the directory listing.
pause
goto end
:start
echo "%~dp1"
dir "%~dp1" > dir.txt || pause
start dir.txt
:end
Put a shortcut to this file on your desktop (or wherever). Drag and drop any file
onto the shortcut and it will open a window with that file’s directory listing.
|
All messages in this thread [show all]
 |  | re: 'Print Out a Directory Listing' in Win2000 (Carl Osterwisch: Thu, Jun 12, 2003, 10:36 am) |
| |
| |
Return to the Windows 2000 Discussion Forum
|
|
|
|