Find files in itunes folder no longer indexed by library

Howdie y'all,
well in the past I used to say Keep Files when deleting files from itunes and not
move to recycle bin. I as well once by mistake restored a big chunk of recycle binned mp3s by accident.
Now my itunes music folder is roughly 6 gigs larger than my itunes library and has
a few hundreds files more than the library has songs. Seeing space on my laptop drive is getting low I would like to find the files that are in my itunes folder
(I let itunes organize my files and have copy to itunes folder enabled as well)
but no longer indexed by my itunes library.
Anyone know of a way to do this easily?
BTW I used a couple of duplicate finder programs and just half a dozen show up
so I am pretty confident that it's not a duplicates issue but a no longer indexed
issue!
any help really greatly appreciated!
remosito

looks like itunes is not readding as duplicates anymore in 7.5.
Just tried
your method with a couple of artist subfolders and itunes must have
realized they already existed in the library because nothing happened.
Once my current itms purchased AAC->MP3 conversion is done I will try
with the whole itunes folder!
it would be sooo nice if it would be so simple!
thanks again a ton
remosito
PS did itunes do duplicate stuff like that in earlier versions? I am pretty
sure I read about this problem. And I think I ran into it a couple of years
ago too when I misclicked the folder and picked the itunes folder instead of
my EAC ripping folder...
too

Similar Messages

  • ITunes freezing when copying added files to ITunes folder

    Hi all,
    I have been running ITunes off of an external hard drive for as long as I can remember. I recently got a little NetBook, and it runs much faster than my older, slower desktop, so I figured I would just transfer all of my music to the NetBook.
    I have the "copy files to ITunes folder when added" button checked, so when I add things to my NetBook library from the external hard drive, it will make a copy on the NetBook's hard drive.
    I have tried adding a small folder twice, and both times it has frozen up on different songs. One time it froze while adding a song I had purchased from ITunes. The other time it froze while adding a song that I ripped from a CD.
    Are these files corrupt? Is there any way to locate all of the corrupt files on my external hard drive and delete/clean them?
    Any help would be greatly appreciated.
    Thanks,
    Mark

    To know whether a song file is corrupt, find it in Windows, right-click the file and use Open With > iTunes. If the file is OK, it will add to the library and start playing. If iTunes thinks the file is not valid, it will "error silently," i.e. do nothing.
    The other thing to note is that big Adds sometimes error in iTunes for no apparent reason. If the files are not corrupt, and they don't add in big batches, add them in smaller batches.

  • Removing files from iTunes folder that are no longer in library

    Hi all,
    Quick question that I require help answering.
    I'm trying to tidy up my iTunes library/ Physical storage.
    I currently have 1600 songs within iTunes, but through bad management in the past I actually have (I know this after reimporting the library to another machine as a test) 1700 songs within the physical iTunes Folder structure. What I need in order to slipstream my storage is to remove those extra 100 songs lying about in my physical folder without losing the 1600 currently in use and present in iTunes.
    Does anyone have an easy way of removing the extra files?
    Thanking in advance,
    Steve

    Use File > Add folder to library... and select your iTunes Media folder. Anthing already in the library will be ignored, anything else will be added. Once the process is complete sort the library on the Date Added column and remove the tracks that have just been added, sending them to the recycle bin.
    tt2

  • Can't find file in new folder?

    I'm writing a script that exports some data from Excel then opens the file in TextWrangler to do a find & replace. The first part of the script checks to see if there's a Folder called "Output" on the desktop, if not create the folder.
    If I run the script and the "output" isn't on the desktop it does create folder but the script errors with: "Can't make <class cfol> "Output" of <class cfol> "Desktop" of <class cfol> "user" of <class cfol> "Users" of <class sdsk> od application "Finder" into type list, record or text.
    But if I run the script with the "Output" folder already created it runs as expected.
    Any ideas??
    Here's my code:
    set OutputFolder to "Output"
    --set DefaultFolder to (path to documents folder as string) & "My Stuff:User Lists:" as alias
    (* Keep exported CSV file? *)
    set deleteCSV to true
    set targetFolder to (path to desktop folder) & OutputFolder & ":" as string
    try
    get targetFolder as alias
    on error
    tell application "Finder"
    activate
    set targetFolder to make new folder at (path to desktop folder) with properties {name:OutputFolder}
    end tell
    end try
    (* Select Users to Export *)
    set ExcelDocument to choose file with prompt "Please choose User List." without invisibles
    (* Open Users in Excel *)
    tell application "Microsoft Excel"
    open ExcelDocument
    activate object sheet "PC Information"
    set f_path to targetFolder as string
    --get sheet name
    set Nameofsheet to name of active workbook
    -- remove file extension
    set Nameofsheet to name of active workbook
    if text -4 of Nameofsheet is "." then
    set Nameofsheet to (text 1 thru -5 of Nameofsheet)
    end if
    -- save with new file name as CSV type
    save active workbook in f_path & Nameofsheet & " PC" & ".csv" as CSV
    -- close the sheet
    set CloseSheet to active workbook
    set saved of CloseSheet to true
    close active workbook
    end tell
    (* Find and Replace *)
    set file3 to alias f_path & Nameofsheet & " PC" & ".csv" as string
    tell application "TextWrangler"
    open {file file3} with LF translation
    replace "\\t" using "," searching in text 1 of text document 1 options {search mode:grep, starting at top:false, wrap around:false, backwards:false, case sensitive:false, match words:false, extend selection:false}
    replace "\"" using "" searching in text 1 of text document 1 options {search mode:grep, starting at top:false, wrap around:false, backwards:false, case sensitive:false, match words:false, extend selection:false}
    set properties of text window 1 to {show invisibles:true}
    set properties of text document 1 to {line breaks:DOS}
    --save text document 1
    save text document 1 to targetFolder & Nameofsheet & " PC" & ".txt"
    close document 1
    end tell
    (* Delete CSV file? *)
    if deleteCSV is true then
    do shell script ("rm " & (quoted form of POSIX path of file3))
    end if
    (* End *)
    tell application "Finder"
    activate
    display dialog "The Group " & Nameofsheet & " has been exported."
    end tell
    eMac 1.25GHz (Tiger) & G5 Xserve (Tiger)   Mac OS X (10.4.5)  

    Hi Ben
    In the case when your script creates a new folder, you're changing the variable targetFolder from a path (as string) to a Finder item. Excel needs the path.
    set targetFolder to (path to desktop folder) & outputfolder
    -- targetfolder is a string at this point
    --snip
    --the alias targetfolder doesn't exist, so:
    tell app "Finder" to set targetfolder to make new folder at desktop with properties {name:outputfolder} -- targetfolder is now a Finder object, not a string or an alias
    -- snip
    -- a bit later:
    tell app "Excel" to do things to targetFolder
    --Excel doesn't speak Finder, you get the error.
    As far as I can see you don't need to use the variable targetFolder for anything other than the string, so all you should need to do is:
    tell application "Finder" to make new folder at desktop with properties {name:outputfolder}
    The variable targetFolder doesn't get changed, and Excel will still understand it.
    Hope this helps,
    H

  • ITunes cannot find or creat iTunes folder

    I just put in a new motherboard and had to repair my windows and iTunes will not start. It gives me a message that it cannot find or create the iTunes folder in the My Music folder. It was there so I moved it and removed the iTunes software and reinstalled it. It still gives me the same warning that it cannot find or create the folder

    Perhaps this Apple KnowledgeBase article will help:
    iTunes for Windows XP: "Disk is locked" or "iTunes folder cannot be found" when installing or opening iTunes
    Good luck.

  • Moving audio files into Itunes Folder

    I have files in my Itunes folder. I also have music files in other folders scattered throughout my computer. All these songs are in my Itunes library.
    How can i move all the songs that aren't in my Itunes folder into my Itunes folder? When I consolidate the music tt only lets me copy. Is there a way to just move them without creating double copies?

    With the more recent version of iTunes, it automatically stores converted audio files into Artist\Album folder, and re-names the audio track to the the track number plus the title of the track.
    It's not the"more recent version of iTunes". It's all versions iof iTunes.
    Is there anyway to store the converted audio files in one folder, and keep the same name as the original file name?
    No.
    If you are RIPping from CD, iTunes will put them into the iTunes music folder by Artist/Album name.
    If you are adding songs to iTunes, it does not convert them unless they are WM and then it puts them into Artist/Album folders.
    If you want your own Folder/File names, RIP the CD using a different application and put the files into your own folders.
    Then iTunes prefs -> Advanced and uncheck *Copy files to iTunes music folder when adding to library*.
    Then add the files to iTunes.

  • Finding files by searching folder location.

    Can I find photos by searching folder location, using Photoshop Elements 10?  I used to use that method frequently inversion 5, but don't see how to do it in version 10.  I am using Windows 7.

    dj_paige wrote:
    It says here that you can use the Search Box to find photos by folder name
    http://help.adobe.com/en_US/elementsorganizer/using/WS3265F89A-20BA-47 fd-81D5-9091ABA3819D.html
    It says so, but that does not work

  • ITunes not opening with message that it can't find or create iTunes folder

    Out of the blue,since downloading latest version of iTunes to Windows XP, it now says it can't find or create the iTnes folder in My Music. The files were there. Backed up songs to external drive and uninstalled iTunes and then re-downloaded software. Same error.Repeated this several times and have lost the will too live.
    Has anyone experienced the sameand what was the solve?
    Thanks
    Compaq R4000 laptop   Windows XP  

    If TweakUI can’t see Music Folder see this thread:
    http://discussions.apple.com/thread.jspa?messageID=1731188&#1731188
    But you should be able to work around the issue by starting iTunes with the shift key held down and either choosing or creating iTunes Library.itl in My Music\iTunes

  • Why is spotlight not finding files in a folder (I know the files are there)

    I've been having trouble with spotlight. I've done all the possible means of resetting spotlight folders via pref pane and via command line. Either way I go about it spotlight is not working properly.
    My test for this is to search in folder for a file I know is in there. But, spotlight in finder isn't finding the file. Why? What prevents SPotlight in FInder from seeing files that are there? None of my drives are in the privacy section of the spotlight preferences.
    Leopard 10.5.6 Mac Pro

    this is certainly not normal. it looks like spotlight indexing is choking on something. if this continues you should probably stop it. look in the console log. there may be a record of what it's choking on. you can try deleting the hidden spotlight folder at the top of the drive. this will restart indexing and delete all the current spotlight data. if it keeps doing this I don't really know what to suggest. you can try excluding various folders on the drive from spotlight to see if you can isolate where the problem is.

  • Spotlight won't find files in user folder

    i have spoken to apple tech support on this and they continue to try to find a solution but.....
    i have files that spotlight doesn't find. they are in my user folder. in fact, it won't find the folder (s) one is on my desktop, one in documents. (these are just the ones i've tested). when i take the folder and just put it on the hard drive (root level), spotlight finds it. also, apparently, it can be found when i put it in the user folder of another user. i would like to avoid reinstalling the system. any thoughts??

    Start with http://www.pinkmutant.com/articles/Leopard/leospot.html and my mod to Finder's Find at http://discussions.apple.com/message.jspa?messageID=6725932 for what you can change so you can find stuff.

  • HT204406 cant find file.. itunes.msi from old itunes ..wont update or uninstall

    i can not remove or update itunes...missing file itunes.msi

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Can I find files in "Originals" folder which aren't showing in iPhoto

    I have found some corrupted photos in some events in my "Originals" folder. I think they came from when I tried to import some files from a corrupted CD, and I have since reimported them from a good copy of the CD. They are corrupted in that they are smaller in file size than the 'real' photos (1-4mb as opposed to 7-8mb) and they don't open with preview.
    My question: Is there any way I can select / scan / search / discover / list all the files that are in the "Originals" folder but that aren't anywhere in iPhoto itself?
    Thanks

    Not that I know of.
    You could try the following: launch iPhoto with the Command+Option keys depressed to rebuild the library. Select the last four options.
    Click to view full size

  • HT1386 copying files in itunes takes too long

    When I drag music files into the iPhone's playlist, the copying takes too long.  I am running 11 and have a 4

    Wait on the update to finish downloading and installing.
    If the device is in recovery mode there is really nothing that can be done besides restoring it.

  • I can't find files of MP3 versions of songs in my library?

    Hi,
    Can anyone help me? I recently uploaded a  load of songs to my iTunes library (Ripped from CD's) and I needed an  mp3 version of each song (for a specific music player for my 3 year old  niece), I know know I should've checked to see if the settings were  right (click on the add files to my iTunes Media folder) but I didn't  and it was unclicked.
    I created mp3 versions of each  song (right click then "Create MP3 version") and I can't find their  files anywhere (I need them to copy them onto a USB memory stick). If  anyone could help me it'd be very appreciated! Thanks.

    1 - iPhoto never forces you to upgrade - any upgrade of the software is initiated by you
    2 - what version of iPhoto did you have? What version did you upgrade to? What version of the OS do you have?
    3 - what exactly happens when you launch iPhoto?
    4 - with no backup it is just a matter of time until you lose all of yoru files including your photos - thing do happen and with no backup you are 100% guarenteed to lose everyhing sooner or later
    as a wild guess backup, depress the option and command keys, launch iPhoto and rebuild your iPhoto library database
    LN

  • Can't transfer files from iTunes to iPhone without erasing song library

    I purchased some music from itunes on my computer at work(which is authorized on my account). I connected my iPhone to transfer (sync) the music to my iphone, but iTunes warns me that all music on my iphone will be erased. The music on my iPhone is currently sync'd with my home computer. My question is: How do I transfer music to my iPhone from two different authorized computers without erasing the content on the phone?

    You can't sync music from two computers to the one iPhone.
    You need to copy the files onto something like a USB stick and take them home and add them to your iTunes library at home.

Maybe you are looking for

  • Seeburger AS2 messages Recovery

    Hi, we're using the AS2 Seeburger adapter and received some messages which were not processed due to error in the AE. Now they remain in the status: "Error on receive, task will not be retried" with error "Cannot initiate received message to backend

  • "Batch NO SALEAB. and valuation type 1ST CHOICE are not the same"

    Hi MM guru, Please help me with the error message - "Batch NO SALEAB. and valuation type 1ST CHOICE are not the same" encountered during MB1b transaction. Thanks in advance, Iram

  • Ios 4.0 to 4.01. Now my car aux stereo jack is "unsupported"

    Same problem using iphone 3g or iphone 4 with ios 4.01 4.0 worked fine. What is it in 4.01 that suddenly causes my car radio aux to not be recognized and tell me it is "unsupported"? Update was supposed to just accurately reflect phone bars. But some

  • IMac Monitor as PC Monitor

    I got my feet wet with a Mac Mini and and now looking to buy an iMac. However, I will probably always be in a dual Mac/PC situation. I've gotten comfortable working with a single monitor, mouse and keyboard using a KVM switch. So, if I get an iMac wi

  • Contacts wiped out on iphone 5 after ios 6 update, how do I restore.

    Help, I stupidly installed the ios 6 update on my iphone 5 without researching it first and now my contacts (except for facebook contacts) got wiped out and my text messages do not tell me who they are coming from. Any ideas how to fix this?