• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need to index files on a CD or DVD. Can someone help?

iisyao

Junior Member
I was wondering if anyone could help me out with a question I have. Is there a program or some easy method to be able to index all files and directories on a CD or DVD and get them into a text file or an html file?

Thanks for any help you can give me.
 
Start -> Run -> Cmd. Hit enter.

At the command prompt, type your cdrom drive letter followed by a colon and hit enter. ("e:" or "d:")
It'll switch to your cd-rom drive.

Then type in dir /b /s > c:\index.txt.

The index listing will be saved to c:\index.txt.
 
Originally posted by: igowerf
Start -> Run -> Cmd. Hit enter.

At the command prompt, type your cdrom drive letter followed by a colon and hit enter. ("e:" or "d:")
It'll switch to your cd-rom drive.

Then type in dir /b /s > c:\index.txt.

The index listing will be saved to c:\index.txt.


ahhh the wonders of DOS.... how I miss it....
 
got a follow up question to this. Is there anyway I can also have it list the file with the time created as well? I tried
dir /s /T:C > c:\index.txt, but I get alot of other information as well. Is there a way to do this neatly?

Thanks
 
Back
Top