AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Mass copy CD to HD

 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
Xantilon



Joined: 14 Feb 2005
Posts: 1

PostPosted: Tue Feb 15, 2005 12:09 am    Post subject: Mass copy CD to HD Reply with quote

Hi everyone,
I needed to copy a lot of CDs so I wrote this little automation. When a CD is copied the tray opens and after the next CD is in, copying is started automatically. Every CD is copy to another (generated) subfolder.
It is my first script, but I liked AHK that much, that I made a GUI for it. If you want it, just PM me.

Code:

#SingleInstance
;-----User Change------------------------------------------------------
LAUFWERK = x:
ZIEL     = c:\_incoming\temp
;----/User Change------------------------------------------------------
INDEX    = 1

Loop
{
   DriveGet, STATUS, StatusCD, %LAUFWERK% 
    if STATUS <> stopped   ;CD drin und inaktiv?
    {
        Sleep, 2000
        continue
    }
    else                   ;jawoll und los
    {
        ;create unique dir
        Loop
        {
            FileGetTime, TEMP, %ZIEL%\CD%INDEX% ;Dir schon da?
            if ErrorLevel = 0
                INDEX += 1
            else
                break
        }
       
        ;now copy
        FileCopyDir, %LAUFWERK%, %ZIEL%\CD%INDEX%, 0
           
        if ErrorLevel = 0
        {
            Drive, Eject, %LAUFWERK%
            Sleep, 5000
        }
        else
        {
            MsgBox, 4112, Bitte prüfen!!!, Ein Kopierfehler ist aufgetreten
            break
        }
    }
}
return

_________________
--
Greetings,
Xantilon
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group