Cannot see files in music folder even though they play in itunes

I have my entire music folder on a NAS drive (lacie 500 gb ethernet disk mini). It has been working pretty well for a few months but now I can't see most of my music files, even though they show up in iTunes, and when I do "get info" it shows the location as the NAS drive (i.e., NAS drive:music:U2:achtung baby:03 One.mp3) and it will play the song(s). However, when I go to the NAS drive and click on the music folder, I can't actually see a U2 folder. And the music folder itself only shows about 20% of my library (even though 100% of the library shows up in iTunes and does play and all my random "get info" tests show that all of the music is on my NAS drive).
It's wonderful that the music isn't actually lost, but why are most of the music files hidden and how can I see them again? I have no music files on my macbook - everything is stored off the NAS drive. I'm about to get a backup drive, but I'm concerned that it won't back up these apparently "hidden" music files. I did search for the files (i.e., any file containing "U2" on my NAS drive and it came back as 0 files found, which is really odd. I mean, if that were true, why is iTunes pointing to the NAS drive as the source of the music files?
One other clue - I tried to consolidate my music library, which is relatively small (10.29 gb) -- and after about 5 minutes, it stopped and gave me an error message.
Thanks in advance.
Message was edited by: myrtlebeach

I honestly don't recall. I do however recall my sense of being overwhelmed as I realized belatedly what a huge project I'd undertaken in doing a clean install. I forgot how many weeks had gone into sorting out setup and drivers and apps and shortcuts and macros and on and on and on. So I started looking for faster, easier ways to get things done. So it's quite likely I just dragged the Documents folder on over.
Assuming that's the case, what's the best correction at this point?
Thanks for the help, --Brian

Similar Messages

  • How can I get my ES2 loops to play correctly? I keep getting the message that the audio is not found when I drag the loops from my audio browser even though they play fine in the preview.

    How can I get my ES2 loops to play correctly? I keep getting the message that the audio is not found when I drag the loops from my audio browser even though they play fine in the preview.

    It's exactly as I stated. Whenever I try to drag these kinds of loops (ESX24 / software instrument loops? the ones marked in green with the white music note next to them) from the loop browser into the timeline a message comes up saying Audio Not Found for that loop.  And a new track is created automatically when loops are dragged into the timeline, so I'm not creating some other random / synth instrument track so I'm not sure  what the deal is... But perhaps I'll try creating a software instrument track first and then drag the loop into that track and see what happens - maybe there's something with the default settings that automatically creates audio tracks whenever loops are imported?

  • Cannot see thumbnails or open pictures (even though info is listed)

    Recently converted to iMac from PC. Generally very happy with Mac. Last pm, was burning CD's of photos. One month/event (2007-09) had more photos than could fit on one CD (even though only 640 MD listed in folder when burning a CD more MB's seem to be "created" and it was over 700 MB). Used iPhoto command to split event/month in two so could burn two separate CD's. Changed the name of each folder (i.e. 2007-09 a and b) then burned the CD's. Then used iPhoto command to merge folders back to one and changed name back to original name: 2007-09). Everything seemed fine until this AM when we opened iPhoto. The 2007-09 folder listed that it had all 272 pictures and 604MB's under information but no pictures could be seen on the event folder or when looking under photos. Each picture listed all the correct info but no image can be seen and when picture is opened it just showed a grey circle with "!"
    I was able to restore the photos from the last saved group from last pm using browse backups/time machine. However, I assume that somehow the actual picture files or pathway was corrupted from the steps I used last pm when trying to set things up to burn a CD. In many years of Windows PC picture and PICASA program use, something like this never happened. While the ability to restore using Time Machine was great and cool, it is very concerning that our original pictures could so easily be "lost" and I assume this represents some flaw in the iPhoto program.
    Did I do something wrong or is there a flaw in iPhoto that easily leads to file corruption? How do I prevent this from happening again?

    RecentConvert1
    Welcome to the Apple Discussions.
    Changed the name of each folder (i.e. 2007-09 a and b) then burned the CD's.
    So how (and where) did you do this?
    Each picture listed all the correct info but no image can be seen and when picture is opened it just showed a grey circle with "!"
    The ! or ? turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents. And yes, the most common way to do this is to change the path to the file, or rename some element in the path.
    The pics should be safe and sound in the iPhoto Package File.
    Regards
    TD

  • Cant get list of files from a folder (even though the folder and files are created with the same app)

    Ok so each character rolled with my app gets saved as an html file in a folder i create on the sdcard called RpgApp
    the code to do this is 
    private async Task saveToHtmlCharacter(string name)
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder sdcard = (await externalDevices.GetFoldersAsync()).FirstOrDefault(); //Windows.Storage.ApplicationData.Current.LocalFolder;
    var dataFolder = await sdcard.CreateFolderAsync("RpgApp",
    CreationCollisionOption.OpenIfExists);
    var file = await dataFolder.CreateFileAsync(name+".html",
    CreationCollisionOption.ReplaceExisting);
    using (StreamWriter writer = new StreamWriter(await file.OpenStreamForWriteAsync()))
    writer.WriteLine("<html><head><title>Character File for " + z.charNameFirst + " " + z.charNameSecond + "</title></head><body>");
    //trimed for the post
    now this as i say works perfectly and i can confirm that the files show up in the "RpgApp"folder
    now the next step is to have the app read the names of each of those html files and create a seperate button for each one named for the filename and with the filename as content (later i will link them up to load the html file they are named for in a webbrowser
    panal)
    here is the code that *should* do that
    private async Task readFiles()
    z.test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    IReadOnlyList<StorageFile> fileList = await folder.GetFilesAsync();
    //z.test.Add("dummy");
    foreach (StorageFile file in fileList)
    z.test.Add(file.Name);
    public async void buttonTest()
    await readFiles();
    CoreDispatcher dispatcher = CoreWindow.GetForCurrentThread().Dispatcher;
    await dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
    foreach (string name in z.test)
    Button button1 = new Button();
    button1.Height = 75;
    button1.Content = name;
    button1.Name = name;
    testStackPanal.Children.Add(button1);
    now i say should as what i get is an error of "A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.ni.dll" (2 of them in fact one after another)
    more detailed error is at http://pastebin.com/3hBaZLQ9
    now i went through checking line after line to find the error and line that causes it is:
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    in the readFiles method
    i checked to make sure the case is right etc and its spot on, that IS the folder name, and remember my app creates that folder and creates the files that are inside that folder (and only files my app creates are in that folder) so it should have access
    im 100% stuck its taken me all day to get the files to save and now i cant get them to list correctly
    I have tested the button creation function with fake list data and that worked fine, as i say the error is when i tell it to look at the folder it created
    all help most greatfully recieved

    this was actually solved for me on another forum thread 
    async Task<bool> continueToReadAllFiles(StorageFolder folder)
    if (folder == null)
    return false;
    if (folder.Name.Equals("RpgApp", StringComparison.CurrentCultureIgnoreCase))
    var files = await folder.GetFilesAsync();
    foreach (var file in files)
    test.Add(file.Name);
    return false;
    var folders = await folder.GetFoldersAsync();
    foreach (var child in folders)
    if (!await continueToReadAllFiles(child))
    return false;
    return true;
    public async void buttonTest()
    test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    var folders = await externalDevices.GetFoldersAsync();
    foreach (var folder in folders)
    if (!await continueToReadAllFiles(folder))
    break;
    //.... commented out
    ...now i say solved this is more a workaround...but it works.
    I would love to know why we cant just scan the RpgApp folder instead of having to scan the whole dc card and disregard all thats not in the RpgApp folder

  • Cannot display edited photos in iPhoto even though they are in the Library

    I cropped two photos using Elements 4 through iPhoto -- saved as by inserting 'cropped' after the original file name. These appear in the Library under Modified/2006/folder name, but they do not appear in iPhoto.
    I have tried importing them, but get a message they already exist -- and indeed they do!
    Library rebuilds have been made.
    Why don't I see these in iPhoto, and what can I do to do so?

    Hi Martin,
    The proper way to do it;
    1-You have to "save" a flattened image with the same name and file type.
    2-The error message is because you are trying to import an image into the library that is already there. Drag the cropped images out of the iPhoto Library folder/Modified. Import them into iPhoto again. They will not be linked to the original image though.
    3-If you want the images linked you need to start over with the cropping and this time "save" the image with the same name. You can always revert to the original by control clicking on the image and scrolling to "revert to original"

  • Can't remove track numbers from Music app even though they're deleted in iTunes

    So I've been having an incredibly annoying issue for a while now, and I can't seem to figure it out or why it happens. I have a large amount of singles and misc. songs in iTunes and I decided to file them under one single Artist and Album, both called iTunes. I then have the track name, artist name, and album name all listed in the track name slot. I have removed all sort by info, album artist info, track numbers, disc numbers, and unchecked the Compilation option on every single of these tracks. In iTunes, the songs are listed under the proper artist and album, and the songs are all alphabetical from A to Z.
    Here's where the the problem comes in. When I select the entire list of songs and send them to my iPhone 5 running iOS 7.0.4, they sync fine. However, upon browsing the songs, the first half (about 100 songs) are listed as being track 1. The next 20 or so tracks are listed as track 2. The next 20 or so tracks are listed as track 3. This continues until the bottom of the list, where the last 8 songs are listed as 13, 13, 15, 16, 16, 18, 19, 22. Within each set of shared track numbers (for example, track 1, so 100 songs), the tracks are listed alphabetically. Then when I hit the set of songs listed as track 2, the alphabetizing resets again, and so on and so forth. I can't figure out why this is, other than that some sort of data is still contained within the song files that the Music app picks up and interprets. I shouldn't have to manually assign each of the 212 tracks its own listing, such as 1/212, 2/212, etc. because that would take forever and I'd need to re-edit half the tracks when I added new music to the iTunes album. Is there anything I can do to fix this issue?; because I'm totally bamboozled as to where these faux track numbers are coming from.

    Ok, I "sorta" figured it out. I was having trouble even sorting the songs into separate albums like iTunes A B C, iTunes D E F, etc. because Music still placed random track numbers onto the songs. So, I went back to my original plan which was to have one album and artist called iTunes, and I forced all tracks to be track 1 of 1, and disc 1 of 1. That seems to have fixed the issue and forced Music to put them in alphabetical order. I'm still unsure as to why Music won't just alphabetize the tracks as they are in iTunes.

  • Mail is putting my emails in the draft folder even though they have been sent. What gives?

    Mail is putting my emails in the draft folder and leaving them there even after they have been sent. This is not happening all the time, but enough that it's annoying. What gives? and how do I fix it?

    It happens on both my Mac Air and my iMac. Both are version 10.7.5

  • HELP!! iPod won't recognise some MP3 files even though they're in iTunes

    I downloaded a bunch of language lessons - all 120 of them! Problem is that of the 120, about 30 will not export from iTunes to iPod. I've updated the tags, swapped around the files. Nothing is working.
    For example in the first folder there are 30 MP3 files, but only 23 will migrate across to iPod. Yet I can play all of them on the computer, but not on the iPod, because it won't even recognise the 7. I've looked at the file info etc .. and its exactly the same for all 30.
    I have organised all files into a playlist, and I can easily play them from the computer, and they're all there. But 30 or so are missing on the iPod. Hmmmm??
    Any clues?

    Hey atlangley,
    Thanks for the question. It may be that these songs did not download fully, or correctly. The best troubleshooting step may be to delete the songs from your library, and re-download using iTunes in the Cloud (if available in your country).
    For more information, see the following:
    Songs in iTunes may not play back completely
    http://support.apple.com/kb/TS4357
    Symptoms
    Occasionally, if a song purchased from the iTunes Store on a Mac or PC was not downloaded completely, the song may not play back fully. The song may abruptly stop during playback, and iTunes may start playing the next song in your library or playlist.
    Resolution
    If iTunes in the Cloud is available in your country, try the following steps to resolve the issue:
    1. Delete the purchased song that is exhibiting the problem from your iTunes library.
    2. Click on the Purchased link in the iTunes Store to view your previously purchased music.
    3. Download your previously purchased song from this list.
    Note: iTunes in the Cloud, which allows you to download previously purchased songs from the iTunes Store, is not available in every country. Learn if iTunes in the Cloud is offered in your country.
    Thanks,
    Matt M.

  • TS1424 What if I purchased files that are incomplete, even though they show that they are downloaded.

    I purchased a few, rather expensive Keith Jarrett albums, only to find that they would jump to the next song without finishing on my iphone.  Ditto for the files on my computer.  Now what?

    Other people have been having similar problems with songs over a number of days, I assume that there has been a problem with Apple's servers.
    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting the incomplete tracks from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-downloads in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those albums and use the 'Report a Problem' link.

  • Photos are not showing anymore in Photo Stream folder even though they are there.

    A couple of days ago my Photo Stream folder in iPhoto was suddenly empty. I checked and Photo Stream is switched on. I disabled it and switched it back on. Now You can see that Photo Stream is importing the images but when iPhoto is done, there are no photos in the folder. When taking a pic with my Mac it uploads as well into Photo Stream and shows up on my iPhone but in iPhoto Photo Stream still nothing.
    I tried manually adding pics but it tells me they are already there. Very strange.
    I also know that Photo Stream itself is working because it works to use Photo Stream as a screen saver and there all the pics show. So it must be a problem with iPhoto. I also did all the repair options for the Media Library that you can do when starting iPhoto. Nothing has changed the situation.
    Anyone any suggestions?

    Disable Photo Stream in the System/iCloud preference pane
    and in iPhoto's Photo Share preference pane.
    Reboot and reenable both respectively. That should jump start Photo Stream. 
    OT

  • Why is it that the 2010 macbooks cannot connect with the thunderbolt display even though they have a thunderbolt port?

    I am wondering why cant the 2010 macbooks access the thunderbolt capabilites on the new thunderbolt display? I think it is pointless and some what disrespectful that they force you to try to buy a new computer if you are interested in the display. The 2010s are still very good and relevant devices and apple prides its self on making devices that are usable for more than one year. In that case the older  comps will soon stop being able to be updated.

    The Thunderbolt specification and implementation was rolled out starting  with the Early 2011 models. For some reason, Apple decided to recycle the connector already being used for the Mini-DisplayPort.
    So no, you can't "access" TB capabilities in the older MBP cause the circuitry isn't there.

  • HT1329 I am trying to move music from my ipod onto my mac. When I locate the ipod under devices on my mac there is no music ! even though I can see it and play it when I use the ipod. So how can I transfer it ?

    I am trying to move music from my ipod onto my mac. When I locate the ipod under devices on my mac there is no music ! even though I can see it and play it when I use the ipod. So how can I transfer it ?

    brianmartinwoolf wrote:
    I am trying to move music from my ipod onto my mac. ...
    Was this Music purchased in iTunes... If so... see here...
    Transfer Purchases
    File > Devices > Transfer Purchases
    More Info Here  >  http://support.apple.com/kb/HT1848

  • HT1711 I backed up my iphone5 in the morning and later again on the same day, in the afternoon. I then restored an older backup from the morning. Now all my music files refuse to play even though they still appear on iphone. How can I resolve this?

    I backed up my iphone5 in the morning and later again on the same day, in the afternoon. I then restored an older backup from the morning. Now all my music files refuse to play even though they still appear on iphone. How can I resolve this?

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • How do I access RAW files in Photos - these showed up in iPhoto but cannot be accessed in Photos even though they have been imported. Retrograde step again Apple

    How do I access RAW files in Photos - these showed up in iPhoto but cannot be accessed in Photos even though they have been imported. Retrograde step again Apple.

    Although more recent, and with newer devices, I have been trying to find this same information.  Please help!

  • ITunes cannot find the "My music" folder

    Whenever I try to open iTunes, it fails to open and instead I get an error message saying "The folder "iTunes" cannot be found or created, and is required. The default location for this folder is inside the "My Music" folder".
    Last time I used iTunes I had moved my My Music folder to my external hard drive, I even told iTunes in the settings the new location. It worked for a while (it's not my main music player, I only use it to synch my iPod) but now I get this annoying error message.
    I can't even get into iTunes to change the settings and tell it where the music now is, because it won't open and I have tried uninstalling it, deleting all the folders and reinstalling it more times than I care to count. The only thing slightly different to normal is that My Music folder is actually called "<Windows Logon name>'s Music", which could be confusing the poor program.
    Could anyone help please?

    This is normally a registry issue, the location of My Music is not correctly set, see this Apple article:
    http://docs.info.apple.com/article.html?artnum=302398
    If you have a prexisting iTunes installation with library, you may be able to work round this but starting iTunes with the shift key held down. When asked to choose a library, navigate to the iTunes folder and choose iTunes Library.itl. This doesn't fix the basic registry problem though.

Maybe you are looking for