home *** CD-ROM | disk | FTP | other *** search
- rem
- rem This file creates a text file of information about a disk in drive a:.
- rem First a directory of the disk is stored into a file, then if any arc
- rem files are on the disk the contents of the arc file are appended to
- rem the information file. The only parameter required is the name for the
- rem file to be created (no ext the .TXT will be added). This name should
- rem match the name of the disk if possible.
- rem
- dir a: >%1.TXT
- for %%f in ( a:*.arc ) do pkxarc -v %%f >>%1.txt
-