Proper location of the "Logic" Folder?

I've updated my system several times and have several boot disks with different OS installed and have noticed that I have "Logic" folders located in the following directories:
Users/"home folder"/Movies/Music/Logic
Users/"home folder"/Music/Logic
iTunes folder also exist in both of these locations.
Which is the correct location for these folders (including the iTunes forlder, while we're at it!)?
Can I consolidate them into one correct folder?
There is a third folder with quite a different purpose,  but also called "Logic" located here:
"System Drive"/Library/Application Support/Logic

Generally, the Logic folder would be located within Music, alongside the iTunes folder. The idea is to save your Logic projects in there.
The Audio Music Apps folder contains Logic's assets. You are not meant to save your projects here, and your iTunes library folder shouldn't be here either.
If there is a Music folder in your Movies folder, it's likely that it was accidentally copied in there. If you accidentally drag Music into Movies, this can easily happen. But iTunes would normally still be referencing the original library in Music.

Similar Messages

  • I cant uninstall my itunes off my computer, i have followed instructions and i still have errors, including error 2330 and redundance cyclic. the only software i have left is itunes.exe and file es.lproj which is located in the ituneshelpresources folder

    I cant uninstall my itunes off my computer, i have followed instructions and i still have errors, including error 2330 and redundance cyclic. the only software i have left is itunes.exe and file es.lproj which is located in the ituneshelpresources folder. i recently installed a second hard drive and that let me uninstall everything. I just want to get itunes off my computer and reinstall itunes, i have deleted everything i can and i ran "chkdsk" this did nothing. I would have just updated the oild itunes to the newest version but it didnt ley me do that. installing/ uninstalling or deleting just lets me get half way and shows me these errors. Please help, thank you.
    JPHowarth

    the only software i have left is itunes.exe and file es.lproj which is located in the ituneshelpresources folder.
    If the chkdsk isn't fixing the damage, and those are the only iTunes that can't be deleted, try renaming the "iTunes" folder that they are contained in (in your Program files) to iTunesOLD.
    Now try another install. Does it go through without the 2330 this time?

  • Cannot update, repair, uninstall itunes in Windows7-64bit. Have itunes v10.5.0.142 installed but is missing "itunes64.msi" file .  Need copy of itunes64.msi file which is located in the file folder ProgramData\Apple Computer\Installer Cache. Thanks.

    Cannot update, repair, uninstall itunes in Windows 7-64bit.  I have itunes version 10.5.0.142 installed but is missing the "itunes64.msi" file.  Would like to obtain a copy of this file which is located in the file folder ProgramData\Apple Computer\Installer Cache.  If someone could supply a copy of this file on this site, it would really be appreciated.  Thanks in advance. 

    See Troubleshooting issues with iTunes for Windows updates for general advice.
    If you want to install an older version of iTunes see http://support.apple.com/downloads/#itunes or OldApps.com.
    tt2

  • What is folder q2tw177e.default located inside the profile folder

    The application data folder, windows xp, has a folder labeled q2tw177e.default located inside the profile folder. I can find out nothing with this label when searching google. Makes me suspicious about this folder. Does anyone know anything about it. Thanks.

    There is nothing to worry about that folder.
    That is the actual Firefox Profile Folder that stores your personal data.
    There are two of them:
    * C:\Documents and Settings\<user>\Application Data\Mozilla\Firefox\Profiles\<profile>\
    *C:\Documents and Settings\<user>\Local Settings\Application Data\Mozilla\Firefox\Profiles\<profile>\
    The latter is the location used for the browsing cache and a few other files.<br />
    See also the about:cache page for the location of the cache.
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • Where is the LOGIC folder ???

    Hi. I installed Logic 7 on my Dual 2.3 for the first time today . I have 2 hard drives , one just for audio , so the install went to my system drive. Under applications i can see the Logic Icon which opens the program. Where is the physical folder , i mean where r the EXS24 samples etc.
    Sorry its my first week with OSX.....
    I shall be upgrading to 7.1 soon , so i will need to delete all this before installing that wont i ??
    Thanks
    Faisal

    Hey Faisal,
    OSX, sorts all applications right down in the application folder. Asscociated folders and documents are sorted in a folder called Application Support.
    So your "Logic folder" is located here: system drive/library/Aplication Support
    You actually have another one here also: User(probably your name)/Library/Application Support
    This one is for your own saved patches etc.
    So the Factory Library to your Exs 24 are located in the first and your own will be located in the second, by default. You don't have to follow this though.
    You will not have to delete anything to run the updater, actually, you really shouldn't!
    ATB,
    Erik

  • cflocation to a file located 'above' the httpdocs folder

    hi guys, i got a tricky one here...
    users can upload word documents (.doc) to my server (using
    cffile).
    the idea is to only allow certain users access to those
    documents, therefore i am thinking that storing them 'above' the
    httpdocs folder is probably a wise move (that way no one can get to
    them using httpaccess, right?)
    i can write the files to my desired location using <cffile
    action="copy"... just fine
    the problem arrises in giving (the authorised) users access
    to those documents.
    i want them to be able to download those documents via their
    browser and had planned to do so using <cflocation
    url="#absoloute-path-to-required-document-on-server.doc#" >
    it seems this works fine if the file is within the httpdocs
    folder, but not if it's above it..
    does anyone have any suggestions?
    i'd be very grateful of any input whatsoever (if you think
    i'm tackling this the wrong way for example, i won't be offended :)
    thanks very much indeed.
    kind regards
    Nick

    > P.S. If you want clean downloads using the
    <cfcontent...> method there
    are some headers you would probably want to set as well to
    inform the
    browser the proper file name and extension of the download.
    This is
    well discussed and blogged all over the internet and full
    examples are
    plentiful.
    Ian, do you mean like the <cfheader...> tag I posted in
    my original reply?
    <cfheader name="Content-Disposition" value="inline;
    filename=document.doc">
    The full code I use to push files to users is as follows.
    Save this as getFile.cfm, update the fileshareroot variable, update
    the code that checks that the user has valid access rights, and
    access by sending a user the url:
    http://myserver.com/getFile.cfm?filename=myFileToGet.ext
    <cfparam name="filename">
    <cfset fileshareroot="/my/fileshare/root">
    <!--- verify user can access this file. --->
    <cfset validAccess = false>
    <cfif userCanAccess> <!--- must be customized
    --->
    <cfset validAccess = true>
    </cfif>
    <cfif not validAccess>
    You are not authorized to view this document.
    <cfabort>
    </cfif>
    <!--- verify document exists --->
    <cfif not FileExists("#FileshareRoot#/#filename#")>
    The document you requested doesn't exist.
    <cfabort>
    </cfif>
    <!---
    // getContentTypeFor() uses mime types from
    // JAVA_HOME/lib/content-types.properties or
    // JAVA_HOME/jre/lib/content-types.properties
    --->
    <cfset URLConnection =
    CreateObject("Java","java.net.URLConnection")>
    <cfset myMimeType =
    URLConnection.getFileNameMap().getContentTypeFor(filename)>
    <!--- if the file extension isn't found in
    JAVA_HOME/jre/lib/content-types.properties, then myMimeType isn't
    defined. Set it to text/plain --->
    <cfif not isDefined("myMimeType")><cfset myMimeType
    = "text/plain"></cfif>
    <cfheader name="Content-Disposition" value='inline;
    filename="#filename#"'>
    <cfcontent type="#myMimeType#" deletefile="No"
    file="#FileshareRoot#/#filename#">

  • Hi, I would like to change the location of the main folder in which I keep my pictures. how do I do it without messing out my catalog? thanks

    Hi,
    I would like to move the location of my picture folder (with the catalog) and would like to know how to do it without messing the catalog...
    thanks in advance
    Gil

    2 options.
    Within Lightrooms Folders panel, drag the folder you wish to move to the location you wish to move it to. You may have to add the folder you wish to move it to first.
    OR (probably easier)
    Move the folder in the Finder/Windows Explorer the in Lightroom right click on the folder (which is now missing) and select update folder location. Navigate to the folder and select choose

  • How can you change the location of the iCloudDrive folder from it's default location assigned when downloaded.

    I recently downloaded the iCloudDrive folder for PC to keep my files up to date amongst my devices. I want to move the iCloudDrive folder from my default location "Jordan" to another folder I have saved on my PC. However, when I do so, the folder looses it's internet capabilities. It therefore does not automatically upload to my cloud storage, files that I add to the relocated folder. This function only seems to work when the folder is placed in "my personal folder": "Jordan". How can I move the iCloudDrive folder to a different location on my PC AND continue using it with internet functionality?!

    You cannot control, how the printed score will look. It is not supposed to be a tool for musical typesetting - only a convenience to be able to check your midi tracks quickly. You cannot even control, how the notes will be assigned to the staffs with the bass cleffs or treble clefs.
    Use other programs for better typesetting your musical scores, e.g.Finale.

  • Keep iTunes info when identifying a new location for the media folder

    I keep my iTunes media folder on an external hard drive which failed. I was able to transfer my media folder to another external drive. How to I let iTunes know where it is and keep my playlists and albums and other info intact in iTunes.

    A "library" is everything in the iTunes folder.  However, in some cases, such as yours, you have moved your media folder out of the iTunes folder which iTunes does not really like but can live with as long as nothing happens such as a drive failing.  The whole organization is stored in a file called iTunes Library.itl.  Right now your .itl tells iTunes that when you click on track xyz it needs to play the file xyz.mp3 in a certain folder on a drive named___
    The two ways to get iTunes to work are, as I said, either fool it into thinking the drive is the same one, or to get it to try to fix all the broken links.
    Now, I use an older (and IMHO a much better) OSX version.  I don;'t know about your version (I guess they have not changed in this regard) I know I can simply click on an external drive and rename it just as I would a any other file or folder.  Of course if you changed the folder organization too that will confuse iTunes, but I don't know exactly what you have done until you tell me.
    What are the iTunes library files? - http://support.apple.com/kb/HT1660
    More on iTunes library files and what they do - http://en.wikipedia.org/wiki/ITunes#Media_management
    What are all those iTunes files? - http://www.macworld.com/article/139974/2009/04/itunes_files.html
    Where are my iTunes files located? - http://support.apple.com/kb/ht1391
    iTunes 9 [and later]: Understanding iTunes Media Organization - http://support.apple.com/kb/ht3847 - plus supplemental information about organizing to new structure https://discussions.apple.com/message/26404702#26404702
    Image of folder structure and explanation of different iTunes versions (turingtest2 post) - https://discussions.apple.com/docs/DOC-7392 and making an iTunes library portable.

  • Can you change the iDVD default save location in the Documents folder?

    This may be a stupid question, but I've looked through the preferences and searched through the forums and online in general, but it seems like that's such a basic function and I can't find anything on it!

    For new projects when you go to same you should see the save window which, if you expand it, will allow you to save anywhere you would like. For existing projects you can do a save as and use the Save as window to change the location. The screenshot is typical of a Save As or Save window:
    Click to view full size
    OT

  • Can I move the location of the Users Folder from my hard drive to an external hard drive?

    Hi
    I have a 2011 iMac with two internal drives - a 250gb flash drive that acts as my hard drive and holds all my apps and user data, and an additional internal drive that holds data such as my aperture library.  I also have an external drive that holds files such as my raw and jpeg files, that would be referenced by the aperture library.
    I'm now in a position where I'm running out of space on the flash drive (effectively my hard drive) and it's slowing the machine down.  Over 125gb of the space used is in the users folders.
    Is there any way I can move these to the external drive in the same way I can, for example, with a dropbox folder?  Clearly, doing so would be a way to free up a huge amount of space on my hard drive, and preferable to looking at replacing the drive at this stage with a bigger one.
    Grateful for any thoughts…..
    Many thanks
    Andy

    http://www.macworld.com/article/1164891/keeping_mac_os_and_data_on_separate_driv es.html

  • Dreamweaver CS6:  Installation disk won't allow a change in the location of the installation folder

    First, I hope the moderators will cut me some slack for making a duplicate posting.  The comments below were posted in the "Creative Suites" community.  I just noticed that there is a "Dreamweaver" community.  I feel the issues I've raised below are more relevant to the latter.
    I recently purchased a Dreamweaver CS6 installation disk and have a valid registration code.  The Adobe website has recognized this code as valid.
    I started-out  by having the installation disk install into a folder on a high capacity (0.5 tb) external drive.  This was done while my Gateway PC was still working properly.  I did a duplicate installation onto this hard drive (into a separate folder) to accommodate any work I wanted to do on a Dell laptop I also own.  For a few days things seemed to work ok on both computers.  Then the cursor on my Gateway stopped moving.  Several changes of mice failed to resolve the problem.  I've written-off my Gateway as "dead."  However the Dreamweaver CS6 installation MAY (I can't remember) be on a "local" folder on my Gateway and I am concerned I will have trouble installing Dreamweaver on the replacement I've purchased.  I understand one is limited to 2 installations.  If needed, can I purchase a license for a third installation?  And what might that cost?
    After turning-off my Gateway I then went to my Dell laptop to try to work with Dreamweaver there.  I felt it was best to install on a "local" folder so I deleted all the Dreamweaver software from the folders on my external drive.  Unfortunately the installation disk is still "pointed" to the folders on my external drive.  To make matters worse I am now getting an error message which indicates I need to install into a folder on the "local" drive of my Dell laptop.  But the installation disk won't allow me to change the path.  On the installation disk the "path" to my external drive is faded-out and it will not allow me to delete and type-in a new path.
    I've spent what, to me, are big bucks on this Dreamweaver disk.  It's the only website building software that seemed to get consistently good reviews. However, for me, Dreamweaver is becoming a nightmare!  I'm very much of a novice at website building.  I don't know how, in the world, I will be able to a)  Create something, and then  b)  Get Dreamweaver to put it onto what is now a blank webpage.  I recently got "Dreamweaver CS6 The Missing Manual" and "Dreamweaver CS6 For Dummies."  So far I haven't been able to find anything, in either of these two books, which addresses the issues I've raised here.
    Somebody--please help!!
    Don't know if my screen name will show up.  So my name is JACK, near Old Faithfull.

    Have you tried calling Adobe Customer service? They can deactivate one of your installations so that you can install and run on a new system. And perhaps they can help with your other problem, or send you to a tech support rep who can.
    With regard to your use of DW, I'd strongly suggest that you take advantage of this downtime by learning as much HTML and CSS as you can absorb. Multiple sittings would be helpful. The more you know about those two, the easier DW will be for you when you eventually get it going.
    Here are some tutorial sites that may be helpful -
    http://www.w3schools.com
    http://www.html.net

  • I get the following message whentrying to open Firefox - "This application has failed to start because sqlite3.dll was not found. Re-installing the application may fix this problem It hasn't. The file is easily located in the Firefox folder.

    I have re- installed Firefox on 3 occasions recently; mainly in the hope of resolving problem with constant crashes. Yesterday, 22 August, I installed Firefox again to be met with the sqlite.dll3 problem. Ihave uninstaaled and re-installed (from the website) and am still getting the same message.

    This procedure might work or might not work:
    Download the free Ccleaner and repair your Registry (repeat until clear)
    http://www.piriform.com/ccleaner/download/standard
    Uninstall iTunes according to Apple's directions here
    http://support.apple.com/kb/HT1925
    Use Ccleaner and repair your Registry again just in case.
    Then download/install iTunes again from the Apple website
    http://www.apple.com/itunes/
    Your iTunes content will not be removed,
    Please regularly backup your iTunes content to external medium (hard drive, cd/dvd's) using the File>Backup Library in iTunes. Apple will not reissue new copies of content.
    (Notice: this post is a copy/paste in a hope that a uninstall/reinstall and repair of your Registry may solve your particular issue, Windows issues are particular difficult to resolve due to multiple factors, so my advice is to be taken into advisement with others recommendations which may be more specific or experienced in resolving your issue. If it or others recommendations solve your issue, please respond back with a "Correct" or "Helpful" or not resolved responses so we can further refine our efforts in trying to successfully assist others. I receive no compensation for product mention.)

  • I installed Lion OS X and Logic Pro won't run. I downloaded the 9.1.5 update: "An Eligible Logic Pro Version Was Not Found in the Applications Folder.  This Update require Logic Pro Version 9.0 or higher".  I have Logic Pro Version 9.1.1 installed.

    I installed Lion OS X and Logic Pro won't run. I downloaded the 9.1.5 update: "An Eligible Logic Pro Version Was Not Found in the Applications Folder.  This Update require Logic Pro Version 9.0 or higher".  I have Logic Pro Version 9.1.1 installed.
    I even pulled the dmg file into the Logic Studio folder in my applications directory and it still does not recognize it.  What do I do now?

    Niel:  Thanks. 
    For others benefit, here is what happened.
    I had installed Logic Studio 9.1 some time ago.......not knowing what all the programs were nor what they did, I created a "Logic Studio" subfolder in my applications folder and put all Logic Studio programs into it so I'd know where they were and could review each at my leisure over time.
    My assumption now is that when the updater looks for the Logic Pro program, it looks only in the applications folder.  It seems lame that it would not also look in the subfolders of the applications folder, but that apparently IS the way it works.  Because my Logic Pro program was located in the "Logic Studio" subfolder, the updater just didn't see it..hence the error message I received when I tried to update. 
    Solution:  I moved all the Logic Studio programs out of the subfolder and now they reside in the applications folder. Ran the 9.1.5 updater and it worked like a charm. 

  • HT204081 I recently updated i tunes and had previously relocated my library to an external hard drive, on restart I realized that itunes did not update the new location on the external but created a new itunes folder on my regular hard drive. how do I com

    I need to know how to fix this. I updated itunes and it created a new itunes folder on my hard drive after I ported all of it to an external for space concerns. It took all my files from that folder and recreated part of it to my hard drive. Now when backing up I have no idea where it is backing up to. Any help appreciated

    Sort of. My media was on multiple hard drives, some local, and actually some networked, and then I conolidated it to a single external hard drive. Renaming drives and moving files sounds like a recipe for disaster.
    When doing a consolidation, files are copied to a new location and the old ones are left untouched. Does iTunes create a backup database of the file locations before doing a consolidation? I could use the backup if that were the case, since everything still exists in the original locations.
    I've recieved my replacement hard drive for the one that crashed and I may be able to copy everything back manually if I knew where it went. I looked inside the iTunes Music Library.xml to see if I could figure out the folder structure, but for some reason they all say they're located in the iTunes folder in My Documents. They're not, of course.
    Would the Previous iTunes Library.itl be of any use, or is that for another purpose?

Maybe you are looking for

  • URLClassLoader issues

    Hi, I'm trying to create a dynamic "class finding" ClassLoader using URLClassLoader and, at run-time, adding various dependency jar files to the class loader and then creating an instance of a class with this ClassLoader. However, the issue I am runn

  • HP Officejet Pro 8600 e-All-in-One Printer - N911a printer assistant

    Hi!  So, I replaced an HP Officejet Pro 8600 e-All-in-One Plus with an HP Officejet Pro 8600 e-All-in-One Printer - N911. Subsequently the HP Printer Assistant desktop shortcut disappeared from my computer --  and apparently from the computer entirel

  • "jco.server.unicode" is gone in JCO 3.0.5??!!

    Recently  we have migrated from   JCO 2.1.8  to  3.0.5.   Currently we are witnessing some problems with communications from non-Unicode Sap systems. In the previous version  (JCO 2.1.8)  JCoIDoc.Server had a property "jco.server.unicode"  in the lat

  • Delivery document type settings

    Hi all, In standard SAP For LF delivery type, Default order type DL (Delivery with out sales order reference) is assigned.What is the use of this. For delivery with out reference to sales order system will not allow us to use delivery type LF. we onl

  • *.indd file extension issue - InDesignCC 2014 - Windows 7

    I cannot get any file with the *.indd file extension to associate with InDesignCC 2014 in windows 7. When I try to use the "Open With" option, InDesignCC 2014 will not show up in the programs list, even if I manually select it. Should I uninstall / r