How can I add files to my library?

Here's my problem.
The 'Recently Added' list can't be cleared!!!! Do when I add new files to itunes, they just get all mixed in with the recently added files that are already there, and its a huge pain trying to locate the one's i just added in that mess so I can drag them to a play list. Is there a clean way to add files to my library so I can get just what I added???
Thanks

Hi
From your library view your songs. Right click on the first line where it shows name, artist, album, etc. You should see a list of menu items with some checked off. Check off the "date Added" one. You can now select the date added and select it again to show the most recently added order of your songs. Hope this works for you.

Similar Messages

  • How can I Add FOLDERs to my library in 11.0.5? My version only shows 'Files'

    How can I Add FOLDERs to my library in 11.0.5? My version only shows 'Files'

    Add Folder to Library is on the File menu, as pictured below.
    If by any chance you don't see the menu bar (File, Edit, View, Controls, Store, Help), first enable it by using CTRL+B.

  • HT4059 how can i add books to the library on my iphone 4s

    How can I add books to the library on my 4s?

    If the photos that you are wanting to delete are also in your Camera Roll then you can delete them from the camera roll

  • After creating a new playlist in iTunes, how can I add my entire music library --at once-- to the new playlist. I want to download all my music from Icloud at once on my Macpro

    After creating a new playlist in iTunes, how can I add my entire music library --at once-- to the new playlist. I want to download all my music from Icloud at once on my Macpro

    You have two separate questions here...
    To get all your music into one playlist, select Music in the sidebar and click the Songs view at the top. Then, highlight all the songs and drag them into your playlist.
    I don't know if it's possible to download all Purchased content (or do you mean iTunes Match content?) at once; try a few Google searches.

  • How can I add file attachment to my form and get the attachment by email?

    I'm using this code and it works fine, but I don't get the attachment file in the email. How can I add this to my code?
    HTML
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
    <script src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js" type="text/javascript"></script>
    <script type="text/javascript">// <![CDATA[
                  $(document).ready(function() {
                    $("#form1").validate({
                      rules: {
                        first: "required",// simple rule, converted to {required:true}
                        email: {// compound rule
                        required: true,
                        email: true
                      last: {
                        last: true
                      comment: {
                        required: true
                      messages: {
                        comment: "Please enter a comment."
    // ]]></script>
    <script type="text/javascript">// <![CDATA[
    function validate ()
              if (document.form1.first.value == "")
              alert("Please enter your First Name");
              document.form1.first.focus();
              document.form1.first.style.border="1px solid red";
              return false;
              else if (document.form1.last.value == "")
              alert("Please enter your Last Name");
              document.form1.last.focus();
              document.form1.last.style.border="1px solid red";
              return false;
              else if (document.form1.emailaddress.value == "")
              alert("Please enter your Email Address");
              document.form1.emailaddress.focus();
              document.form1.emailaddress.style.border="1px solid red";
              return false;
    function has_focus() {
        if(document.form1.first.value == "")
                                  document.form1.first.focus();
                                  document.form1.style.first.border="1px solid green";
    function set_focus(x)
              document.getElementById(x).style.border="1px solid #80CA75";
    function clear_focus(x)
              document.getElementById(x).style.border="1px solid #DBDFE6";
    // ]]></script>
    </head>
    <body>
    <p><span style="color: #666666; text-align: center; font-size: 13px;">Please complete this form if you have any technical issue.</span></p>
    <form id="form1" action="http://www.southsun.com/php/tech_issue.php" enctype="multipart/form-data" method="post">
    <table style="width: 850px; font-size: 15px; padding-left: 20px; text-align: center;" border="0">
    <tbody>
    <tr>
    <td style="text-align: left; padding-bottom: 20px;" colspan="2">
    <h2><span style="color: #666666;">Please complete this form if you have any technical issue.</span></h2>
    </td>
    </tr>
    <tr style="padding-top: 40px;">
    <td style="text-align: left;"><span style="color: #abaf6f;"><strong>First Name</strong>:*</span><input id="first1" name="first" type="text" />  <br /><br /> <span style="color: #abaf6f;"><strong>Last Name</strong>:*</span><input id="last1" name="last" type="text" /><br /><br /> <span style="color: #abaf6f; padding-right: 33px;"><strong>Email</strong>:</span><span style="color: #abaf6f;">*</span><input id="email1" name="email" type="text" /><br /><br /> <span style="color: #abaf6f;"><strong>Shipping Method:</strong><br /></span> <input name="shippingmethod" type="radio" value="prioritymail" /> Priority Mail                                                                 <input name="shippingmethod" type="radio" value="store" /> In Store Pick up <br /> <input name="shippingmethod" type="radio" value="ground" />  Ground                                                                       <input name="shippingmethod" type="radio" value="3day" /> 3 Day Select<br /><br /> <span style="color: #abaf6f;"><strong>Payment Method:</strong><br /></span> <input name="paymentmethod" type="radio" value="paypal" /> Paypal Method                                                       <input name="paymentmethod" type="radio" value="creditcard" /> Credit Card<br /> <strong><br /> <span style="color: #abaf6f;">If getting an error message, please explain the error:</span></strong><span style="color: #abaf6f;"> <br /></span> <textarea id="errormessage" cols="20" rows="2" name="errormessage"></textarea><br /><br /></td>
    <td style="border-left: 1px solid grey; padding-left: 40px; text-align: left;"><span style="color: #abaf6f;"><strong>If using Paypal, Were you redirected successfully?</strong><br /></span> <input name="paypalredirect" type="radio" value="yes" /> Yes                                                                 <input name="paypalredirect" type="radio" value="no" /> No<br /><br /> <span style="color: #abaf6f;"><strong>If using Credit Card, Did you get an error?</strong><br /></span> <input name="carderror" type="radio" value="yes" /> Yes                                                                  <input name="carderror" type="radio" value="no" /> No<br /><br /> <span style="color: #abaf6f;"><strong>What happened after clicking place order? </strong><br /></span> <textarea id="placeorder1" cols="20" rows="2" name="placeorder"></textarea><br /><br /> <span style="color: #abaf6f;"><strong>Comments</strong>: <br /></span> <textarea id="comments1" cols="20" rows="2" name="strcomments"></textarea><br /><br /> <span style="color: #abaf6f;"><strong>Attach PrintScreen</strong>: <br /></span> <input name="strresume" type="file" />
    <div style="height: 50px;"> </div>
    </td>
    </tr>
    <tr>
    <td style="padding-top: 20px;" colspan="2">( * ) indicates required fields</td>
    </tr>
    <tr>
    <td style="text-align: center; padding-top: 20px;" colspan="2"><input class="button" name="submit" type="submit" value="Submit" />                        <input class="button" name="reset" type="reset" value="Reset" /></td>
    </tr>
    </tbody>
    </table>
    </form>
    </body></html>
    PHP
    <?php
    echo $savestring;
    //--------------------------paramaters--------------------------
    // Subject of email sent to you.
    $subject = 'prueba con uploads';
    // Your email address. This is where the form information will be sent.
    $emailadd = '[email protected]';
    // Where to redirect after form is processed.
    $url = 'http://www.pch-graphicdesign.com';
    // Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
    $req = '0';
    $target_path = "http://www.pch-graphicdesign.com/php/uploads/";
    $target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
    $text = "Results from form:\n\n";
    $space = ' ';
    $line = '
    foreach ($_POST as $key => $value)
    if ($req == '1')
    if ($value == '')
    {echo "$key is empty";die;}
    $j = strlen($key);
    if ($j >= 20)
    {echo "Name of form element $key cannot be longer than 20 characters";die;}
    $j = 20 - $j;
    for ($i = 1; $i <= $j; $i++)
    {$space .= ' ';}
    $value = str_replace('\n', "$line", $value);
    $conc = "{$key}:$space{$value}$line";
    $text .= $conc;
    $space = ' ';
    mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
    echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
    ?>

    Sending a file as an attachment to an email involves setting the correct MIME type and headers. There's a brief tutorial here: http://webcheatsheet.com/php/send_email_text_html_attachment.php.
    Also, you need to use the same name as in your form. In the script you have shown here, the name of the file field is strresume, but your processing script uses this: $_FILES['uploadedfile']['name']. It should be this: $_FILES['strresume']['name']

  • How can i "add file to library" and have it be considered to be a Podcast?

    I went to a web site and downloaded a file to my C drive (MP3 format) that is not music. It is spoken, and is what i would call a 'Podcast', although i did not access it via iTunes as an official podcast. I then use iTunes "add file to library" function. But, it considers it to be music. I thought maybe drag/drop would work to let me add it to Podcasts, but it does not.
    How can i get this file which i have imported into iTunes to be treated as a Podcast? First, i'd like it to appear on my iPod with 'Podcasts'. But, more importantly, if i stop listening in the middle, i'd like it to restart from that point the next time i start it again. Now, it is treated by the iPod like music, and so it starts at the beginning each time.
    Thanks for your help! Tom.
      Windows XP  

    Is there a way that you can "subscribe" to something that is not in iTunes store? This is just a file on a site that is available for download.
    If not -- does anybody else know if there is a way to do what the original question posed, to have a file that you downloaded, treated as a Podcast instead of as music?
    Thanks, tom.
    Windows XP

  • I can't add files into the library!

    For some reason i cannot add files or maps in the music library of itunes, when i click "add a file to the library" and i choose a music file(for example .mp3 or .m4a) it just doesn't show in the library so i cannot play anything in this program,
    i tried on another laptop with vista and there where no problems at all!!
    anyone knows a suggestion?

    I'm also having similar problems on my parents Vista machine.
    When an audio CD is inserted iTunes recognizes it, but once I try to play a track or import the CD iTunes goes through each track in about 1-2 seconds time, says that its done importing when it hasnt actually done anything. I uninstalled iTunes and downloaded a new fresh copy and the problem keeps happening. I ran the iTunes diagnostics tool on my Optical Drive and everything checks out. I opened up Windows Media Player and was able to rip audio tracks from the cd that way and was able to import the WMP ripped WMAs into iTunes, but this is too many steps for my parents to do (using iTunes alone is almost too many steps).

  • Can't add files to iTunes library - nothing happens

    I used a tool to remove embedded artwork from MP3s (since you can't do this for more than 1 MP3 at a time with iTunes). When this tool was running, it crashed. I've found 3 albums that won't work in iTunes anymore. iTunes acts like it's adding it but nothing happens. No error message, nothing.
    The songs play perfectly fine in Windows Media Player and other players. Why can't iTunes add them? Help

    On the iTunes Task Bar, Click on Advanced (It may be something different in Windows, I can't remember.) and Click on Authorise computer.

  • HT1473 If i Have a DVD how can i add it to my library?

    i have a dvd and cant put it on itunes. simple as that :/

    Since there are no virus for the Mac that is not the problem.
    How much free space do you have on your system disk?
    Allan

  • A friend mailed me a flash drive with music on it from his pc...  mostly wma files.  How can I add these to my itunes library?

    My friend created a BIG music file on his pc then saved it to a flash drive.  It is mostly wma files..  how can I add this to itunes library?

    Install Flip4Mac's WM Components (from their download page), required to play WMA in QuickTime, the Finder's preview column, and many other applications -- but not iTunes!
    Open your WMA file in QuickTime Player (Pro version required), then save as reference movie.
    Drag the newly created .mov file onto iTunes. Now you can play it as you would any other song.
    Some metadata is copied to the QuickTime file, and you can edit/add tags in iTunes. Remember to keep the original WMA files in place, as your reference .mov files still point to them. If you don't mind one more conversion step, you can then liberate your WMAs within iTunes. Select your WMA songs in iTunes, go to the Advanced Menu, click Convert selection to MP3/AAC, then enjoy your music on the iPod.

  • Can't drag files from itunes library (to anywhere) anymore.

    Recently I've noticed I can no longer drag files from the library in my itunes. I can't drag them to playlists, and I can't drag them to the desktop.
    I have repaired permissions and even tried removing the library.xml file and let it generate a new one, but I still get the same result.
    I am on a mac os 10.6.8 Macbook Pro.
    I'm not sure when ths started happening, but I wonder if it has something to do with an itunes update. I have the newest version and always dwnload the updates. I can still add files to the library by control-clicking the files and selecting the option in the dropdown list. This isn't an intentional change in the way the program works is it? Is no one else having this problem??

    Iphone will sync or manually manage with one and only one computer at a time.
    Syncing or manually managing to another will indeed erase the current content and replace with the content from the new computer.

  • How can I add my own files to the TV Shows Library instead of the Movie Library?

    I have my own TV Shows in m4v format.  I can drag and drop the TV Shows into the iTunes Movie Library.  How can I add my files to the TV Shows Library?  Can I group them by show in the TV Shows Library?

    Select the files in iTunes.
    Right click - get info.
    Select the Options tab and set Media kind to TV Show.
    Better yet, use something like MetaZ to tag the files before adding them to iTunes.
    -> http://www.macupdate.com/app/mac/36029/metaz

  • How can I add a folder of music to my library?

    How can I add a folder of music to my library?

    I am mystified as to what drag and drop folder into iTunes 11 means.  My music is in a folder in "My Documents"/Windows 7. I can copy and paste the individual folders of music within the back up folder, and drop them into the music folder in iTunes.  But, this is ridiculous.  It was easy and promoted user enjoyment to have the ability to add folders from wherever on your computer, into the iTunes library. Why did Apple reduce the users enjoyment, by flubbing up a pretty good music file system?
    Work around?

  • Exchange 2007 and EWS Managed API: How can I add in-memory text file as an attachment to an email message?

    Hello,
    In my ASP.NET application, I need to add a text file attachment to an EmailMessage. I am building the attachment text content in a StringBuilder and I like to avoid saving it to disk and use Attachments.AddFileAttachment.
    How can I add a text file attachment to EmailMesage based on in-memory string variable?
    Thank you,

    I found the answer.
    This is the API:
    http://msdn.microsoft.com/en-us/library/office/dd634274(v=exchg.80).aspx

  • Hi when I import files to my I Tunes they always go into playlistds, how can I stop this and how can I transfer them to my library?

    how can I stop my imported music from going into playlists? and how can I transfer playlists to my library?

    Imported files will go into any smart playlists that they qualify for. If new playlists are being created as you import folders then the folders contain m3u playolist files made by another application and iTunes is importing those too. You can search for and delete these before import, use http://albumbrowser.klarita.net/itfw.html instead of iTunes' Files > Add folder or use my script KillTopLevelPlaylists after the import.
    tt2

Maybe you are looking for