home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- echo Please Wait. Bitte warten. Attendez s.v.p. .....
-
- tree /a %1 >%temp%\~dmexlist.txt
-
- echo. >>%temp%\~dmexlist.txt
- echo. >>%temp%\~dmexlist.txt
- echo -------------------------------------------------------------------------------------- >>%temp%\~dmexlist.txt
- echo. >>%temp%\~dmexlist.txt
- echo. >>%temp%\~dmexlist.txt
-
- dir %1 /o:gn /w /s >>%temp%\~dmexlist.txt
-
- if %2x==/px goto printer
- goto viewer
-
- :printer
- echo Print.
- rem start notepad.exe %2%temp%\~dmexlist.txt
- print %temp%\~dmexlist.txt
- goto stop
-
- :viewer
- echo View.
- rem start notepad.exe %temp%\~dmexlist.txt
- start %temp%\~dmexlist.txt
- goto stop
-
- :stop
- echo End.
-