Importing to different location

Hello,
I just got an external hardrive and I am trying to figure out how to import my cd's to it rather than to my computer. I know how to get my ipod to read from it, so I fine there, I just can't figure out how to import directly to it.
Is this possible?

When you import a CD using iTUnes, it puts the songs in the "iTUnes Music" folder. Its default location is in
c://douments and settings/owner/My Documents/My Music/iTUnes
The only way to get it to import to the external is to move the "iTUnes Music" folder THRU ITUNES NOT WINDOWS EXPLORER.
To do this, in iTUnes, goto edit>preferences>advanced tab>general sub tab, hit the "CHange" button and select the external drive. It will now move the folder and all songs in it (Songs imported from CD using itunes, Purchased songs from the iTUnes store, and podcast) to this new location

Similar Messages

  • Can 2 people in different locations at the same time import, access, send, and receive the same messages from the same email account

    I import messages into Thunderbird. I send and receive emails. One of the things I like about Thunderbird is that I can insert (image, link, etc) right where I want to, and I can Attach. But not just a simple attach file. No, I can also click Attach and choose Webpage. A lot of web-based emails are plain, simple, no frills - Attach file and that's it.
    So I need to have my client be able to do the same thing I do when sending out emails, Namely sending out emails with an Electronic Press Kit (EPK) attached - which is to say, a webpage (not a pdf in our case). So, I need her to download, install, and use Thunderbird.
    Here's the problem and my question. She needs to access, send, and receive from my email account. That would be easy if it was simple attach files - she could just login on the web, go to squirrel mail and bang it out.. Here it is: She needs to be able to import the messages to be able to reply to some messages - she needs access to what I have access to. She needs to use Thunderbird so she can take advantage of the features like insert image with link or attaching a webpage. My question is how will this affect my use? Can 2 people simultaneously and from different locations access and use the same email account or is it a case where her importing the emails would cut me off..Is it an either or thing? Basically, can her and I both import the emails or can they only be imported to one location at a time. Because every time someone sends me an email i get it right there on my Thunderbird application..it's imported to my Thunderbird..I want her and I to be able to do that without affecting each other. I don't want her to start importing to her desktop and then I can no longer import. If she says "point those messages to my computer what will happen to my ability to access them on my computer in the same manner I am currently?

    I think there is a contradiction in your requirements. You want two people to share an account and you don't want either to interfere with the other.
    The short and simple answer is to use IMAP to connect to the mail server. If your current email provider doesn't offer IMAP, find another that does. This is old technology already and it's disgraceful that some email providers haven't yet put it in place.
    IMAP means that your messages are stored on the server and both of you will see exactly the same set of messages. And therein lies the contradiction; you will both see changes made by the other so you are inherently interfering with one another.
    Caveats: some providers may not permit you both to access the account concurrently, and even if they do, things may become interesting if you both choose to work on the same message simultaneously.
    Note that all of this is about email servers and protocols; your choice of Thunderbird as your email client has little bearing on the situation.

  • Trying to import a CD. iTunes put the content into four different locations. I wanted to import it as an album.

    The CD is a new release, Water Night by Eric Whitacre. When I tried to import it, the titles on the album ended up in four different locations! I want all of the songs in the same location so I can load it onto my iPod as an album. I found no way to do this, so I cobbled together a playlist and loaded it that way - but I don't have the cover art or the convenience of playing it as an album. Anyone know what to do about this?

    Generally all you need to do is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    tt2

  • Problem in importing two different classes with same name...

    I have to import two different classes in my program with the same name....
    import org.apache.lucene.document.Document;
    import org.w3c.dom.Document;
    //    I AM USING THE DOCUMENT FROM W3C PACKAGE HERE....
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                     DocumentBuilder builder = factory.newDocumentBuilder();
                     InputSource is = new InputSource( new StringReader( tempString ) );
                     d = builder.parse( is );
                     NodeList images = d.getElementsByTagName("img");
                     int length = images.getLength();
                     for(int i = 0;i<length;i++)
                         Node image = images.item(i);
                         String tempAltText = image.getAttributes().getNamedItem("alt").getNodeValue();
                         altText = altText.concat(" ").concat(tempAltText);
                     }and the error i am getting is
    [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:20: org.apache.lucene.document.Document is already defined in a single-type import
        [javac] import org.w3c.dom.Document;
        [javac] ^
        [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:132: incompatible types
        [javac] found   : org.w3c.dom.Document
        [javac] required: org.apache.lucene.document.Document
        [javac] d = builder.parse( is );
        [javac] ^
        [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:133: cannot find symbol
        [javac] symbol  : method getElementsByTagName(java.lang.String)
        [javac] location: class org.apache.lucene.document.Document
        [javac] NodeList images = d.getElementsByTagName("img");
        [javac] ^
        [javac] Note: Some input files use unchecked or unsafe operations.
        [javac] Note: Recompile with -Xlint:unchecked for details.
        [javac] 3 errorsany idea ..how to resolve it
    Edited by: ping.sumit on Jul 16, 2008 3:39 PM
    Edited by: ping.sumit on Jul 16, 2008 3:40 PM

    now i changed the code to
    import org.apache.lucene.document.Document;
    import org.w3c.dom.Document;
    org.w3c.dom.Document d = null;
    try{
         System.out.println("in author");
                   URL url = new java.net.URL(urlString);
                   java.net.URLConnection conn = url.openConnection();
                   BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                   while ((in.readLine()) != null)
                        //tempString = tempString.concat(in.readLine());
                        String temp = in.readLine();
                        tempString = tempString + " " + temp;
                   System.out.println("the string in author" + tempString);
                    in.close();
                    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                     DocumentBuilder builder = factory.newDocumentBuilder();
                     InputSource is = new InputSource( new StringReader( tempString ) );
                     d = builder.parse( is );
                     NodeList images = d.getElementsByTagName("img");and their is only one error i am getting ...and that is
    [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:20: org.apache.lucene.document.Document is already defined in a single-type import
        [javac] import org.w3c.dom.Document;
        [javac] ^
        [javac] Note: Some input files use unchecked or unsafe operations.
        [javac] Note: Recompile with -Xlint:unchecked for details.
        [javac] 1 error

  • Showing visible JPopupMenu in different location does not appear

    In my application if a popup menu is already displayed and the user right clicks to reshow the popup menu in a different location the popup menu disappears. I have included a very simple sample app below that shows the problem.
    Any suggestions as to what I'm doing wrong gratefully received.
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import javax.swing.*;
    public class Test extends JFrame implements MouseListener {
      public static void main(String[] args) {
        Test test = new Test();
        test.setVisible(true);
      JPopupMenu popup;
      public Test() {
        super("Test");
        popup = new JPopupMenu();
        popup.add("Test1");
        popup.add("Test2");
        setSize(400, 300);
        getContentPane().addMouseListener(this);
      public void mouseClicked(MouseEvent e) {
      public void mouseEntered(MouseEvent e) {
      public void mouseExited(MouseEvent e) {
      public void mousePressed(MouseEvent e) {
        popup.show((Component)e.getSource(), e.getX(), e.getY());
      public void mouseReleased(MouseEvent e) {
    }

    Read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/menu.html#popup]How to Use Menus. It shows a better way to check if a popup should be displayed.

  • Songs saved in two different locations, why?

    I was looking around my hd today and found that I have two copies of many of my mp3 files, some of which i deleted months ago. The first set of songs are in the "Music" folder and are only sorted by file name. The second set is located in music>itunes>itunes music and is sorted by artist then album, the same as in iTunes.
    I have two questions. Firstly, is it safe to delete the copies in the Music folder and just use the ones in the iTunes folder? And second is there any way I can stop this from happening in the future?
    Thanks

    May I ask a related question, since what I'm trying to do is to avoid having songs in two different locations? (If not, just tell me the rules; I'm relatively new to Discussions, as well as being a new Mac OS X user!)
    I've set up separate user accounts for my children on our iMac. They want to put music on the computer, but their interests overlap somewhat. In order to avoid having the same songs copied into the iTunes Music folder of more than one user, and to allow all users to access all music files, I followed a suggestion from David Pogue's book on OS X, namely to put all the music in an iTunes Music folder in the ~/Users/Shared folder, and then make that the default folder for each user by changing the iTunes preferences.
    The problem with this was that then my son was unable to copy (import?) the music from a CD by dragging it to his iTunes Library icon--error message said he didn't have access to the folder--whereas he had been able to do so when ~/Users/HisUsername/Music/iTunes/iTunes Music was his default folder. I tried to solve this problem by changing the permissions on ~/Users/Shared/iTunes Music to be read & write, but then everyone but me started having problems running iTunes (it would give an error message saying "iTunes is on a locked disk, or you don't have access . . .").
    Lots of people seem to have the same problem (i.e., error message in running iTunes), but leaving that aside my basic question is what's the most efficient way to store and access music files so that (a) everyone can access it, (b) the number of duplicates is minimized, and (c) individual users can add music to the computer? Any suggestions will be very welcome!
    --Eric

  • Why cant i log into my icloud accout, keeps saying having trouble connecting to server. I have tried on two different computers in two different locations. I am new to this and just learning, getting very frustrated with the whole smart phone thing!

    why am i having so much trouble trying to log into my icloud account. I have been trying for 2 days now on two different computers in 2 different locations. I can get to the log in screen, type in my apple id and password, then keep getting screen saying icloud showed an error connecting to server. I am very new at all this smart phone stuff and just want to check my icloud account to make sure my back ups are working and to import some photos off my phone to make some more room? Getting very frustratied, HELP am I doing something wrong?

    Hello wolfpupmp,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    iCloud: Troubleshooting web browser issues with iCloud.com
    http://support.apple.com/kb/TS4050
    Have a nice day,
    Mario

  • Mounting Documents, Music, Video and Picture folder to different location.

    I would like to mount the documents, video, picture and music folders to a different location than \users\<username\. Anyone know how I can go about doing this? My goal is to have those folders default to folders on a shared partition on the drive. I am dual booting OS X and Vista and would like to share the folders I listed above so both operating systems can read and write to them. I have my drives setup as follows:
    Partition 1 OS X
    Partition 2 Vista OS
    Partition 3 Shared
    I already have Vista defaulting to the correct folders on the shared drives but not sure how to get it done with OS X.
    Thanks in advance for the help.

    Moving the default folders may cause problems with installers and such that expect them to be where they normally are, and there may be various permissions issues. With that said, you should be able to create an alias or symbolic link to the desired folders and place them in your shared partition.

  • Saving screenshots to a different location?

    Somewhere, there is a preference to set the default location to save screenshots... I can't find it now! I have one of my machines set to save screenshots to a folder on my desktop, so I know this is possible. But I can't seem to find that preference on a second machine. I thought it was a preference setting in Cocktail, but it isn't there.
    Can anyone tell me where to set the default location for saving screenshots? I need to set it to a folder instead of Mac OS's default of the Desktop.
    Thanks!

    I would love to know how to set a different location. How do you do this in Leopard and Snow Leopard?

  • I'm trying to download Firefox 4, but the following message comes up: Downloading/Volumes/firefox/o5we?qDe.part.part could not be saved, because an unknown error has occurred. Try saving to different location. What does this mean?

    When trying to download to download Firefox 4, the following message comes up: Downloading/Volumes/Firefox/05weDe.part. could not be saved because of an unknown error. Try saving to a different location. I have a Mac OS X Version 10.4.10. I think I should be able to download Firefox 4. I have Firefox Version 3.6 now.

    I am often getting this kind of error, although I believe it's less frequent with Firefox 4 than with the previous version. I do not know a proper solution, but I have noticed this:
    * If I simply try to re-download, it will fail again.
    * If I clear the list in the download window, I can download the same file without any trouble.
    I believe the problem may be related to the antivirus software. The file is downloaded completely, and instead of moving it to the final position Firefox gets confused and deletes it.

  • Mac mini server on two different location

    Hi,
    With my partner we are working on very havy image file from two different location. we wont to be able to share those file to each other easly and quickly mad make sur those file are allways up to date.
    - My first idea was to install in my place one mac mini server with external hard drive (RAID 0) and install the same server in my partner place. then I would like to create a VPN connexion between both Mac Mini server and setup a kind of RAID 1 between then. link that if my partner modify an image file on the server, With a short delay I will be able to see it on my side. this solution would be the best for me as all the data would be save in two different location and I would not have any backup issue.
    I did not buy the MAC mini server yet but as soon that I know the best soluiton and that it is possilbe to do so I will buy it.
    - My second idea (if the first one is not possible or if you guy's convins me that my idea is stupide) would be to have one MAC Mini server in one location setup with an external hard drive in RAID 01. my partner will need to connect to this server through VPN. This solution seems to be a good option but my partner will need to copy the file in local to work on it (few Gb eatch file) and copy it back on the server when he finish to work on it.
    With this solution I will also need to organise manual backup through another hard drive to avoid to have all our data in the same location.
    Witch one of those solution seems the best and can work with MAC mini server? If you have another idea for my situation I m more then happy to read it.
    Knowing that other user may need to access to my file, is the MAC Mini server VPN connection safe and fast?
    Thank you in advance for your help.
    Chris.

    The fact that you are both working on multi-gigabyte
    files, the statement BDAqua made about network speed
    is a big issue.  Small incremental changes in a single
    multi-gigabyte file still require that entire file to be transferred.
    There in lies the big issue with network speeds.
    Basically, it seems idea 1 will probably not work well and
    besides, RAID is for local drives and not for over networks.
    One solution to the synchronization issue is have a single
    computer that has the application and the data and log into
    it and work remotely.  However, it sounds like these are image
    files and working and any kind of graphics over a remote
    connection is problematic unless there is a very high speed
    network connection.
    Second idea is the simple solution.  As for the backup, that
    can be automated with backup software and the backup could be
    put any where.

  • What is the best way to work on the same InDesign file in different locations?

    I'm the creative director for an in-house creative department. We produce 37 catalogs and a multitude of print and electronic advertising each year, plus a variety of other items. Our problem is that we have two locations. In the current set-up, if I want someone at one location to work on a project but the files are at the other location, I have someone at the one location package all the materials involved with that project and either upload them to DropBox or copy them to an external drive and ship it. Not very efficient.
    We have servers at both locations but there are different files at each location. I'm able to remote from my computer into a computer at the other location, but if everyone were to do that we would need double the number of CC subscriptions and computers, and it would bog down the internet connection that the entire company uses. I'm also connected to the server at the other location (again, over the internet) and have opened InDesign files that reside on the server there and tried to work on them here (over the internet) but that is much slower than remoting in.
    The only way I can think of to alleviate this problem is to run duplicate servers at each location, but this would be an update and back-up nightmare (unless I'm missing something). Is anyone operating this same way and, if so, how are you dealing with it?
    We can't be the only company that works like this. Maybe I'm just missing something.
    Thanks,
    Lloyd

    We have servers at both locations but there are different files at each location. I'm able to remote from my computer into a computer at the other location, but if everyone were to do that we would need double the number of CC subscriptions and computers, and it would bog down the internet connection that the entire company uses. I'm also connected to the server at the other location (again, over the internet) and have opened InDesign files that reside on the server there and tried to work on them here (over the internet) but that is much slower than remoting in.
    One tiny thing bothers me about your setup. And you said it above, you would need double the number of CC subscriptions and computers. Are you using two people to access under the same CC subscription. Even if they are working in two different time zones, it is technically violating the rules and spirit of the rules of being able to install on two machines at the same time.
    You're allowed to install for two machines for one person working at the office and then at home. One person wouldn't be in two different locations at the same time.
    Meanwhile, regards your problem, I remember reading about a system many years ago that was pretty simple. It was based on an old newspaper/magaizine system of "who has the folder." (Created before computers) In the old days, if someone was working on a file, they left a folder with their name in its place.
    In the computer age, one person, working on a file, would move it to their desktop. Then, they would leave an empty folder with that document's name where it had been as well as their initials. So if I took "Shoes and Socks Fall 2015.indd" out, I would leave a folder named "Shoes and Socks Fall 2015_smsc" in its place.
    And if it was necessary for me to have the images, I would make a copy of them onto my machine so I wouldn't tax the network. Then when I was finished, I would copy the file back to the server. The links should show up. If not, we could relink later.
    With the empty folder on the server, anyone could tell who is working on a project. So if they were late getting it back, you could email them.
    It relies on the people being disciplined enough to make the folders, move the docs, etc. But since you've ruled out all the systems for companies with dumb employees, you're going to have to make them follow the rules.

  • I have 3 PC's.  Two of them I use at 2 different locations and only use them 6 months a year.  So, if I have Icloud for my calendar, and turn on a computer that has not been used for 6 months, does all the old information on that computer to go Icloud?

    I have 3 PC's.  Two of them I use at 2 different locations and only use them 6 months each year.  When I turn on a computer that has not been used for 6 months, does all of the old information from that computer end up in Icloud?  Does Icloud push all the new calendar and contact items over the old items?

    A reset may help. Tap and hold the Home button and the On/Off buttons for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
    No content is affected by this procedure.

  • How do you save your videos in iMovie to a different location on your computer?

    Since i upgraded to OSX Mavericks imovie keeps switching itself off when trying to export video to DVD.
    Genius Bar told me i need to save my videos first then delete imovie and then download imovie from the app store.
    How do i save my videos in imovie to a different location on my imac so i can then delete imovie????

    Copy the iMovie Library. It should be in YourUserFolder/Movies/iMovie Library. See iMovie (2013): Work with multiple libraries

  • Can i use one copy on my iMac and my MacBook.  I do not use the computes at the same time just in different locations

    Can I use on cooy of Acrobat on my iMac and on my MacBook. The computers are in different locations?

    i am in acrobat  or so it says!  Thanks for the reply.

Maybe you are looking for