View Single Post
  #7 (permalink)  
Old 08-02-2007, 08:54 PM
mlee0332 mlee0332 is offline
Junior Member
 
About:
Join Date: Jul 2007
Posts: 7
mlee0332 is on a distinguished road

Default


Actually, I found move and I also found choice scattered about in some CDs I had. Choice was on NAV2003, random, right? and I found a website that allowed me to download move.com.

BUT, I still have one other problem, with appending the date to a file.

When I tell it to make the date go into a file, I use this formula:

EX:

rem Make Directory With Name and Date
for /f "tokens=1-3 delims=/- " %%a in ('date /t') do set XDate=%%b-%%c

md %xdate%rgb

it should come out as "08-02rgb" but it comes out "rgb."

AND, how do I make it test for a file on one of the cdroms with out displaying the "Drive is not ready. Retry, Abort, Fail?" message? Or make it automatically abort or fail when this message will be prompted.

I am writing a program that runs in DOS for work, and it would be a pain to have to tell it abort each time it needs to figure out in which CD drive the CD is located.

Thanks!



Reply With Quote