Forum Home
Press F1
 
Thread ID: 20181 2002-05-31 02:01:00 Table of contents for CD-ROM Guest (0) Press F1
Post ID Timestamp Content User
51689 2002-05-31 02:01:00 Can you tell me an easy way to create a table of contents for a CD I have just created to send to our Printers.
In other words I would like to print out a list of the file names. I am using a PC and not a Mac.
Guest (0)
51690 2002-05-31 02:50:00 There is a printdir command in DOS that will do what you want, otherwise search for a windows-based product called expprint it will do what you want.

G P
Guest (0)
51691 2002-05-31 09:21:00 Create a batch file to list the folder contents.

Just open Notepad (Start/Programs/Accessories/Notepad). Copy this & paste it into Notepad:

@echo off
dir /b >list.txt
cls


Save as list.bat in the folder that contains the files you want to list.
Make sure it's saved as a .bat extension. It should produce a blue-and-white icon.

As long as this batch file is put in the same folder as the files you want to list, just double-click the batch file.

That will produce a Notepad document containing the list.

Any probs, let us know.
Guest (0)
51692 2002-05-31 09:55:00 I've been doing just that tonight :-)

My method is by using a PrintDir batch file which sends the contents of my Music folder to the printer.

It does the job and you get your list, but it ain't pretty enough for me. What I do is leave the printer off and grab the resulting dir.txt file from the Windows\Temp folder. I then copy and paste it from there into Word and pretty it up a bit. You might find the original acceptable though.

To make the batch file, open a new Notepad document and copy and paste the following into it:

@echo off
dir %1 /-p /o:gn> '%temp%\dir.txt'
notepad /p '%temp%\dir.txt'

It would be best to view this post by clicking on the View icon alongside the title so that you see the line breaks before copying it or it might not work.

After pasting in Notepad, save the file as printdir.bat
You will need to click on the drop-down box to select 'Save as type' so that the file doesn't end up as printdir.bat.txt The file should be saved in the C:\WINDOWS\SendTo folder.

Now all you need to do is turn on your printer, right-click on the folder that you want printed, choose Send To|printdir.bat and away you go!
Guest (0)
51693 2002-05-31 10:22:00 Woops, forgot a bit. Change this line:

You will need to click on the drop-down box to select 'Save as type' so that the file doesn't end up as printdir.bat.txt

to this:

You will need to click on the drop-down box to select 'Save as type' and select 'ALL FILES *.*' so that the file doesn't end up as printdir.bat.txt
Guest (0)
1