Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

iTunes backup to hard drive

When iTunes asks if I want to backup my purchases; it defaults to backup to CD or DVD... is it possible to change that to an external hard drive... thanks...

Macmini Intel Duo/24" iMac, Mac OS X (10.4.6)

Posted on Jul 4, 2007 10:10 PM

Reply
Question marked as Best reply

Posted on Jul 4, 2007 11:14 PM

To back up your iTunes library to a hard disk, connect it to your computer, create a new Finder window, click on the item in the sidebar named Music, or if there is no item in the sidebar with this name, on the item with the house icon followed by opening the Music folder from there. Drag the iTunes Music folder of the iTunes folder to the external drive.

To restrict it to the purchased music, open the Script Editor in the /Applications/AppleScript/ folder and run the following:

tell application "Finder"
with timeout of 3600 seconds
set source_folder to folder "Music:iTunes:iTunes Music" of home
set destination_folder to disk " external disk name"
duplicate (every file of entire contents of folder source_folder whose name extension is "m4p") to destination_folder
duplicate (every file of entire contents of folder source_folder whose name extension is "m4v") to destination_folder
duplicate (every file of entire contents of folder source_folder whose name extension is "ipg") to destination_folder
end timeout
end tell

(22733)
2 replies
Question marked as Best reply

Jul 4, 2007 11:14 PM in response to vansouza

To back up your iTunes library to a hard disk, connect it to your computer, create a new Finder window, click on the item in the sidebar named Music, or if there is no item in the sidebar with this name, on the item with the house icon followed by opening the Music folder from there. Drag the iTunes Music folder of the iTunes folder to the external drive.

To restrict it to the purchased music, open the Script Editor in the /Applications/AppleScript/ folder and run the following:

tell application "Finder"
with timeout of 3600 seconds
set source_folder to folder "Music:iTunes:iTunes Music" of home
set destination_folder to disk " external disk name"
duplicate (every file of entire contents of folder source_folder whose name extension is "m4p") to destination_folder
duplicate (every file of entire contents of folder source_folder whose name extension is "m4v") to destination_folder
duplicate (every file of entire contents of folder source_folder whose name extension is "ipg") to destination_folder
end timeout
end tell

(22733)

iTunes backup to hard drive

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.