Itunes not finding files

After a disaster recovery on my computer I used my ipod to transfer all the music files back to my PC (after opening the hidden files etc).
I have selected the file from my PC and uploaded them into Itunes and synced my ipod which is working fine.
The problem I have is when I go to play any of the songs using Itunes I receive the error message "cannot find file". I know where they are on my PC but as the files are all named as per the ipod filing system (rather than by artist and song title) I do not know which file to choose.
Is there a way of getting Itunes to find all the files?????
Any help would be appreciated.

iTunes is still probably looking for the files in their location on your iPod's Hard Disk rather than on your PC desktop.  You can look to see where iTunes is looking for these files by right->clicking on one of these tracks and selecting Get Info. When the window appears, look at Where field at the bottom of the Summary tab.
If it's still looking for them on your iPod's hard drive, you'll need to remove these files from iTunes and re-add import them.  However, before doing that again, head to Edit-> Preferences and select the Advanced tab. Make sure there is a tick mark next to Copy Files to iTunes Media folder when adding to library is ticked.  It wouldn't hurt to also tick the Keep iTunes Media folder organized as well. From there, you can re-import the file's from your iPod.
B-rock

Similar Messages

  • HT204088 I installed iphone 5 from iTunes backup but still have one app showing [ ! ] not installed can not find file . How do I get rid of this pop up

    I installed iphone 5 from itunes back up and get a pop up [ ! ] app not installed can not find file. I have looked through everything that have with "CANADA" in the app title. That is the only info there is.

    If you haven't found out which app it is then if you go into list view in the Apps part of your library do any of the apps have an exclamantion mark against them ? If they do then they are the one(s) that iTunes can't find the actual app file(s) for - if you delete that app from your library then if it is still in then you should be able to re-download it via the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage on your computer's iTunes, or you can just download it directly on your phone via the Purchased tab in its App Store app

  • Can not find file must locate each song one at a time need to restore my whole library

    can not find file, must locate each song one at a time need to restore my whole library

    Hello BadSteve,
    It sounds like iTunes seems to have lost track of all your music and you must locate each file individually. I would recommend at this point that you check for 3rd party plugins to see if there are any causing an issue:
    iTunes: Troubleshooting issues with third-party iTunes plug-ins
    http://support.apple.com/kb/ts3430
    If the issue persists after removing the plugins, I would next try recreating your iTunes library:
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/ht1451
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Why all of a sudden all my music goes into ! Can not find file mode ?

    Why all of a sudden my itunes music goes into a ! Can not find file would you like to locate it?

    Thanks everyone...the problem seem to be with the battery itself.  I've had this phone for about 6 months.  Up until a few days ago I had no problems...charge would last for up to 2 days.  All of a sudden it draining like crazy.  I ran batter doctor and closed everything that could drain the batter.  Still no luck.  Battery drained  3% in less then 10 minutes.
    I've contacted our local Verizon store and they will take care of the problem.
    I appreciate everyone's suggestions.
    Toni

  • Logon failed. Details: mscorlib : Could not find file.... XSD

    I have been searching the forums and the web for hours and have not found a solution to a problem we are having.  We upgraded our reports from VS.NET 2003 to VS.NET 2008 and started getting the below error upon our Report.Export code.
    Logon failed. Details: mscorlib : Could not find file 'C:\Inetpub\wwwroot\xxx\ConsolidatedReports\Designers\xxxFringe\xxxFringeFunderDetail.xsd'. Failed to export the report. Error in File C:\WINDOWS\TEMP\temp_90ed8e07-481c-4bdb-8c50-885854a143d0 {B8EC61FE-7931-4979-AD92-432C21013D77}.rpt: Unable to connect: incorrect log on parameters.
    So when I verify the XSD and set the data source location (XML File Path: C:\Inetpub\wwwroot\xxx\ConsolidatedReports\Designers\xxxFringe\xxxFringe.xsd)  the report works fine.  The problem is that when another developer trys to run the report on their machine and their machine has a different path for the code, the report fails.  The odd thing is that some of our reports are working fine, it is only a few that basically are looking for the hard coded XSD path.
    So, as far as I can tell the XSD are not needed (Re: ADO.Net (XML) Data Source File Path).  I have applied SP1 for Crystal Reports.  I am totally confused why this started and why the report is looking for a "hard coded" path to the XSD.

    The RunReport is called by a button click on a form.  This method calls ExportFile which works until the line "Report.Export()" is hit. 
        Public Overrides Function RunReport(ByVal ReportID As Short) As String
            Dim Utility As New Utility(Session("CNReportPath"))
            Dim Report As New rptIndividualSalaryFringe
            Dim db As New BudgetDB(Session("CNReportPath"))
            Dim pDB As New ProgramDB(Session("CNReportPath"))
            Dim dsRep, dsSub As DataSet
            Dim AgencyID As Integer = Program1.AgencyID
            Dim ProgramID As Integer = Program1.ProgramID
            Dim FyID As Integer = FiscalYear1.SelectedValue
            Dim ShowOnlyCSCFunded As Integer = IIf(chkShowCSCFunded.Checked = True, 1, 0)
            Dim ContractNumber, AgencyName As String
            Dim ReportEnv As String = Environment
            Dim ReportDB As String = DBName
            dsRep = db.GetIndividualSalaryFringe(AgencyID, ProgramID, FyID, ShowOnlyCSCFunded)
            'dsRep.WriteXmlSchema(Server.MapPath("~/ConsolidatedReports/Designers/IndividualSalaryFringe/IndividualSalaryFringe.xsd"))
            AgencyName = pDB.GetAgencyName(AgencyID)
            With Report.Section1
                CType(.ReportObjects("txtAgency"), TextObject).Text = AgencyName
                CType(.ReportObjects("txtProgram"), TextObject).Text = pDB.GetProgramName(ProgramID)
                CType(.ReportObjects("txtFiscalYear"), TextObject).Text = "Fiscal Year " & FiscalYear1.SelectedText
            End With
            ContractNumber = pDB.GetContractNumber(ProgramID)
            If Not IsNothing(ContractNumber) Then
                If Not ContractNumber = "" Then
                    With Report.Section6
                        .SectionFormat.EnableSuppress = False
                        CType(.ReportObjects("txtContractNumber"), TextObject).Text = "Contract #:" & ContractNumber
                    End With
                End If
            End If
            With Report.Section5
                CType(.ReportObjects("txtAgencyName"), TextObject).Text = AgencyName
            End With
            If dsRep.Tables(0).Rows.Count <= 0 Then
                Report.secNoData.SectionFormat.EnableSuppress = False
                Report.Section2.SectionFormat.EnableSuppress = True
                Report.Section4.SectionFormat.EnableSuppress = True
                Report.Section7.SectionFormat.EnableSuppress = True
                Report.Section9.SectionFormat.EnableSuppress = True
                Report.Section10.SectionFormat.EnableSuppress = True
                Report.secFunderDetail.SectionFormat.EnableSuppress = True
            Else
                dsSub = db.GetIndividualSalaryFringeFunderDetail(ProgramID, FyID)
                'dsSub.WriteXmlSchema(Server.MapPath("~/ConsolidatedReports/Designers/IndividualSalaryFringe/IndividualSalaryFringeFunderDetail.xsd"))
                Report.OpenSubreport("subFunderDetail").SetDataSource(dsSub)
            End If
            'Ehn 41 add environment and db name
            CType(Report.Section5.ReportObjects("DBName"), TextObject).Text = "DB: " + ReportDB
            CType(Report.Section5.ReportObjects("Environment"), TextObject).Text = IIf(ReportEnv = "", ReportEnv, "Env: " + ReportEnv)
            Report.SetDataSource(dsRep)
            'You must set the ReportGroup equal to Crystal to make it work correctly
            ReportGroup = ReportGroup.Crystal
            'Leave this line of code
            ReportFile = Utility.ExportFile(Report, ExportFilter1.ExportType, Server.MapPath("~/ReportFiles/"))
            Return String.Empty
        End Function
        Public Function ExportFile(ByVal Report As ReportDocument, ByVal ExportType As ExportType, ByVal OutputPath As String, Optional ByVal ds As DataSet = Nothing) As String
            Dim crDiskFileOpts As New DiskFileDestinationOptions
            'Dim strFilePath As String
            'Dim strLinkPath As String
            Dim crExportOptions As New ExportOptions
            Dim crExcelOptions As New ExcelFormatOptions
            Dim crPDFOptions As New PdfRtfWordFormatOptions
            Dim crWordOptions As New PdfRtfWordFormatOptions
            Dim ReportName As String = String.Empty
            Try
                crExportOptions = Report.ExportOptions
                Select Case ExportType
                    Case ExportType.Excel
                        ReportName = Left(Guid.NewGuid.ToString, 15) & ".xls"
                        With crExcelOptions
                            .ExcelTabHasColumnHeadings = True
                            .ExcelUseConstantColumnWidth = True
                        End With
                        crExportOptions.ExportFormatType = ExportFormatType.Excel
                        crExportOptions.FormatOptions = crExcelOptions
                    Case ExportType.PDF
                        ReportName = Left(Guid.NewGuid.ToString, 15) & ".pdf"
                        crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
                        crExportOptions.FormatOptions = crPDFOptions
                    Case ExportType.Word
                        ReportName = Left(Guid.NewGuid.ToString, 15) & ".doc"
                        crExportOptions.ExportFormatType = ExportFormatType.WordForWindows
                        crExportOptions.FormatOptions = crWordOptions
                    Case SamisConstants.ExportType.ExcelRaw
                        ReportName = Left(Guid.NewGuid.ToString, 15) & ".xls"
                        ''If Not IsNothing(ds) Then
                        ''    Dim oExcel As New ExcelExport.ExcelExport
                        ''    oExcel.CreateWorkbook(OutputPath & ReportName, ds)
                        ''End If
                End Select
                Select Case ExportType
                    Case ExportType.Excel, ExportType.PDF, ExportType.Word
                        crDiskFileOpts.DiskFileName = OutputPath & ReportName
                        With crExportOptions
                            .DestinationOptions = crDiskFileOpts
                            .ExportDestinationType = ExportDestinationType.DiskFile
                        End With
                        Report.Export() ' ERROR HAPPENS HERE!!!!!!
                End Select
                Return "ReportFiles/" & ReportName
            Catch ex As Exception
                Throw ex
            End Try
        End Function

  • Have Mac OS 10.7.4 installed on an iMac-3.1 GHz Intel Core i5...the Finder will not find file on Windows mounted volumes...what setting should we be using...tried the same settings as our iMac 10.6.8-did not work!

    Have Mac OS 10.7.4 installed on an iMac-3.1 GHz Intel Core i5...the Finder will not find files on Windows mounted volumes...what setting should we be using...tried the same/working settings as our iMac 10.6.8...did not work for 10.7.4!

    Added note: We are tring to find files on Windows 2008 Server Standard...

  • Why is Spotlight not finding files in Applications Support

    Why is Spotlight not finding files in Users/UserName/Library/Applications Support ?
    What needs to be configured to do that?
    Thanks.

    CMD+F, click on Kind, select Other, and enable additional criteria. See http://www.thexlab.com/faqs/stopspotlightindex.html and http://homepage.mac.com/francines/articles/Leopard/leospot.html for starters.

  • Spotlight not finding files on my Hard Drive - permissions issue?

    I found that Spotlight in Mountain Lion was often not finding files when searching for words within the file (searching file names seemed to be OK).
    I found various threads suggesting that it may be a problem with File Permissions. I use Dropbox and was concerned it may have messed up permissions after a relinking a while ago.
    I tried to reset permissions from within Dropbox (under Settings, as suggested by some), but no help.
    Finally I found this EXCELLENT TIP to reset permissions from within the Repair Utility (in Mountain Lion), Not the Disk Utility, which I had not been aware of:https://discussions.apple.com/message/20421138#20421138
    It took a little while and then Spotlight re-indexed all my files. SO FAR it seems to be working well.
    THANK YOU!!

    Might try this...
    Safe Boot , (holding Shift key down at bootup), use Disk Utility from there to Repair Permissions, test if things work OK in Safe Mode.
    Then move these files to the Desktop for now...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Users/YourUserName/Library/Preferences/com.apple.desktop.plist
    /Users/YourUserName/Library/Preferences/com.apple.recentitems.plist
    Reboot & test.
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.

  • Could not find file in Temp directory

    Hey all!
    I received the follwoing error when exporting a report into a pdf file using the ExportToStream method:
    Could not find file "C:\DOCUME1\CHL0337\ASPNET\LOCALS1\Temp\export_e269c3d0-e775-4351-b2ea-09507859a79a.tmp".
    I am using VS 2003 and CR 9.1.5, and I didn't have any problems with this report until I enlarged the header field for a column. After this error occurred, I reverted back to the original report, but it still threw the error. I then restarted IIS, rebuilt the application, and then ran the report again. Still no luck.
    Any ideas on what is causing this problem? Is this a version issue?
    (I have four other reports that are still working fine, it just seems to be this one report)

    Here is the full dump of the error message:
    Exception=System.IO.FileNotFoundException
    Message=Could not find file "C:\DOCUME1\CHL0337\ASPNET\LOCALS1\Temp\export_d03e5522-a635-47c0-b649-a238063b0223.tmp".
    FileName=C:\DOCUME1\CHL0337\ASPNET\LOCALS1\Temp\export_d03e5522-a635-47c0-b649-a238063b0223.tmp
    TargetSite=Void WinIOError(Int32, System.String)
    StackTrace= at System.IO.__Error.WinIOError(Int32 errorCode, String str)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
    at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportFormatType formatType)
    at FixedAssets.FAPageBase.InvokeCrystalReport(String ReportName) in c:\dev\source\comptrollers\fixedassets\dev\web\fapagebase.aspx.cs:line 588
    at FixedAssets.Reports.CreateAssetDisposalsReport.btnRunReport_Click(Object sender, EventArgs e) in C:\dev\source\comptrollers\FixedAssets\Dev\web\Reports\AssetDisposalsReport.aspx.cs:line 70
    at System.Web.UI.WebControls.Button.OnClick(EventArgs e)
    at System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
    at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
    at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
    at System.Web.UI.Page.ProcessRequestMain()
    Source=mscorlib

  • Could not find file ERROR while connecting to access (mdb) file

    I am getting the following error while connecting to the database:
    javax.servlet.ServletException: [Microsoft][ODBC Microsoft Access Driver] Could not find file 'C:\WINNT\system32\Database1.mdb'.
    Following is my code:
    <%
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         String database="jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
         String filename="D://BeaTemp//Database1";
         database+= filename.trim() + ";DriverID=22;READONLY=true}";
         Connection con=DriverManager.getConnection(database, "", "");
         Statement st=con.createStatement();
         ResultSet rs=st.executeQuery("select * from Database1.Employee");
         ResultSetMetaData rsmd=rs.getMetaData();
         while(rs.next()){
              for(int i=1;i<=rsmd.getColumnCount();i++) {
                   out.println(rs.getString(i));
    %>
    What could be the problem..??
    Thankx in advance..
    Satish.

    Got the solution.
    The statement:
    ResultSet rs=st.executeQuery("select * from Database1.Employee");
    should be changed as:
    ResultSet rs=st.executeQuery("select * from Employee");
    Now, it is working fine.
    Regards,
    Satish.

  • Error could not find file/pathurl for id file::QTMRead

    Hi,
    I'm very puzzled as to this error I have gotten on multiple projects when trying to check back out.
    Error could not find file/pathurl for id file::QTMRead
    I'm halfway through a project with a deadline of next week, and have been using edit proxies, so am just worried about being able to export the final project if the Server cannot find the file.
    It seems to get this error after a glitchy upload where the server locks up and I have to force quit. Has anyone had this message before/have any ideas how to solve it?
    Some speedy help would be very much appreciated.
    Thanks,
    Dania

    You need to make sure that you imported the Reports.xml file into the FDM application. Also, you will want to login to the application using the workbench client and click on the Reports tab and expand the English > Check Reports and right-click on the check report and choose "Set as Validation Report".

  • I can not find File "Import to Library" in iPhoto.

    I can not find File> "Import to Library" in iPhoto.

    Nevermind. After I sent this I found it in the File on the banner tab at the top of my screen.

  • When exporting to Photoshop can not find files

    I have a drive that when I export an image to Photoshop it can not find the files. Any suggestions on getting them to read?

    I'm using MAC OS 10.49 the latest. I have 9 external hard drives. I can bring in all thumb nail images from all drives and as I update meta data it changes on all drives. But when I go to edit a specific image in Photoshop any image from this one drive and only this one drive I get error message "can not find file". If go out of Lightroom and into Bridge I can see the image and launch it in photoshop. It only happens so far with this one drive. I have several of the same manufacture drives. Does this help!

  • ITunes not finding album artwork

    I'm getting a bit sick of this - why does iTunes not find any album artwork any more, yet it recognises the album & finds all the tracks? This seems to be a constant problem on this forum - anyone have any ideas...? I have iTunes 11 & a desktop intel Mac, OS X 10.7.

    I wouldn't be in a hurry to upgrade to 8.2.
    Make sure that the *Album Artist* and Artist of your album matches up with what's in the iTunes Store EXCEPT if the artist has an ampersand (&) in it. Then put in everything up until the space before the ampersand. (You're free to edit the info after you've gotten the correctly downloaded artwork.) In some cases you may not get the correct artwork no matter how you match the data.

  • Windows can not find ' FILE ': error.

    I have downloaded and installed the production version of SQL Developer. (1.0.0.14.67)
    Windows XP SP 2.
    When I started it for the first time I checked all the file association check boxes.
    If I double click on a .sql file the following windows error occurs:
    Windows can not find '<file>'. Make sure you typed the name correctly, and then try again. To Search for a file, click the Start button, and then click search.
    SQL Developer does startup. The error message is closed when the OK button is selected.
    Any Ideas?
    Regards;
    Robert

    Hi Robert,
    Just to confirm, SQL Developer does actually open the file. The only issue is the error message displayed. I have logged a bug for that.
    There is a work around until that is sorted. If you use explorer to associate the file types with SQL Developer, they open without this error.
    Regards
    Sue

Maybe you are looking for