Help, moved folders & files to Applications folder accidentally!

Hi guys,
Need help here. Accidentally moved some non-app (music) files to the Applications folder, thinking it was an iTunes window :s
Embarrassing, I know. But now each time I try to drag them back into where they were, they end up showing as aliases to the files in their initial location, with the accidentally-copied ones still in the Applications folder!
What can I do to restore their original location? Just FYI - Cmd + Z doesn't work, nor does Undo (it's, actually, unavailable). Is there anything I can do, or am I basically stuck with a dozen music folders inbetween my apps, unless I decide to delete and redownload them? (Oh yeah, I can't move them anywhere except Trashing them).
Many thanks!
Best,
Dynamitri

OK, well, I found a way around this - archived the folders/files within the Applications folder, and then unpacked the archive to the initial location of the files, where they were before I moved them by accident. Did the job.
Still, would be good to know if there is any other way to do this (for future reference, just as this post is). Thank you!

Similar Messages

  • No longer able to group applications into folders in the Applications folder?

    I would like to group applications in Folders in the Applications Folder, which I have dragged back to to the dock.  This is the way I had managed apps in Snow Leopard.  I can create folders no problem,but when I try to drag apps into these folders, a copy is always left behind in the Applications folder.  How do I move the app?   I am not able to delete the copies that are left behind.
    My Account has Admin rights, and this is a clean install into an empty partition....I wanted to check out Lion before moving from SL.
    Launchpad is pretty, but I prefer the Applications Folder.

    It does cause problems in a number of circumstances.
    In this forum alone, there are several threads with many users who used Setup Assistant or Migration Assistant to transfer their stuff, ended up with lots of duplicate apps because of it, and had great difficulty finding and deleting the duplicates.
    There have also been folks whose apps did't get updated, and Adobe apps that wouldn't run at all.
    Again, it depends on the apps and circumstances.

  • I have tried to download Mavericks on my 2010 iMac(10.6.8), but nothing happens, not even the install app downloads, also I tried to download chrome, I moved it to the applications folder and when I opened the folder it wasn't there

    I have tried to download Mavericks on my 2010 iMac(10.6.8), but nothing happens, not even the install app downloads, also I tried to download chrome, I moved it to the applications folder and when I opened the folder it wasn't there. I have a 1tb hard drive that is mostly empty. By the way I just got this imac used from a reseller.

    Mavericks downloads into the Applications folder, where you can install it.   Some Mac App Store Troubleshooting information and how to resume a download that was interrupted; some of the information here might get you an answer.   Failing that, try contacting Apple Support.

  • File upload error: Error uploading file. Error moving uploaded file from temporary folder. (FILE_UPL

    what causes this error:
    File upload error: Error uploading file. Error moving uploaded file from temporary folder. (FILE_UPLOAD_ERROR)

    On 5/17/07 4:26 PM, in article [email protected],
    "Gü[email protected]" <> wrote:
    >
    > To my experience servers behave differently -- on some I really had to use
    > 777, others are happy with 755.
    >
    > in regards to "any user" :: On most ADDT respectively MX Kollection - based
    > backends I made the image & file upload feature available to user having e.g.
    > the "levels" 1 & 2, but not 3 -- I wouldn´t expose something like this to all
    > users
    >
    > Günter Schenk
    > Adobe Community Expert, Dreamweaver
    My backend is only for admin, so they are the only ones who can access the
    upload pages. My concern is an images folder on the site being 777. Can't
    anyone from the outside plant a file in that folder if they just know where
    to find it using an ftp program? ?

  • Changing multiple file permissions - Applications folder

    After using migration assistant in Snow Leopard and then changing the username of my primary user, all third party apps in my Applications folder require me to enter the admin password when moving, updating with Sparkle, etc. They don't seem to have a primary owner.
    I saw the steps outlined here: http://discussions.apple.com/thread.jspa?threadID=1778969 for changing permissions on multiple files but I'm wary of doing this on the Applications folder.
    Does anyone have any advice on how to fix this? I went through files individually and i'm still getting messed up permissions all over the place. Thanks!

    DO NOT use "apply to enclosed items" on the main Applications folder! Do not use it on any system created folders. they often have hidden ACLs and using this button would propagate the ACLs to everything inside. this is the case for the main Applications folder. there is no easy way to do what you want because Apple changed the permissions structure in Snow leopard and the default applications no longer have read+write access by admin users by default. I would suggest you don't mess with permissions on Applications. if you ever need to update a 3rd party application simply delete the existing copy in /Applications and put the new one in. it will have correct permissions.

  • Iphoto is not opening after deleting my applications folder accidentally

    i accidentally dragged applications folder to my trash can,
    and somehow my itunes playlist got all erased,
    and iphoto is not opening..
    i have no idea what to do..
    i got my applications folder back on to my dock,
    but iphoto & preview is not working..
    and do you guys know how to bring my playlist back for my itunes?????
    pleaseeeee help !

    The message box you are seeing is a standard message that is always displayed when Captivate detects that you've added a link in your project to a file
    outside the project.  Even after you HAVE copied the PDF into the publish folder, this message will continue to display at each publish. If you know the file is in the correct place, just ignore it.
    Another issue I've spotted when looking at the name of the PDF is that you seem to have spaces in the name.(BBO User Guide.pdf)  This is likely to break the link in an HTTP LMS web environment.  Make sure you either eliminate the spaces or use underscore characters instead.

  • Need help with simple file sharing application

    I have an assignment to build a Java File Sharing application. Since I'm relatively new to programming, this is not gonna be an easy task for me.
    Therefore I was wondering if there are people willing to help me in the next few days. I will ask questions in this thread, there will be loads of them.
    I already have something done but I'm not nearly halfway finished.
    Is there a code example of a simple file sharing application somewhere? I didn't manage to find it.
    More-less, this is what it needs to contain:
    -client/server communication (almost over)
    -file sending (upload, download)
    -file search function (almost over)
    -GUI of an application.
    GUI is something I will do at the end, hopefully.
    I hope someone will help me. Cheers
    One more thing, I'm not asking for anyone to do my homework. I will only be needing some help in the various steps of building an application.
    As I said code examples are most welcome.
    This is what I have done so far
    Server:
    package ToJeTo;
    import java.io.*;
    import java.net.*;
    public class MultiServer {
        public static ServerSocket serverskiSoket;
        public static int PORT = 1233;
        public static void main(String[] args) throws IOException {
            try {
                serverskiSoket = new ServerSocket(PORT);
            }catch (IOException e) {
                System.out.println("Connection impossible");
                System.exit(1);
            do {
                Socket client = serverskiSoket.accept();
                System.out.println("accepted");
                ClientHandler handler = new ClientHandler(client);
                handler.start();
            } while(true);
    }Client:
    package ToJeTo;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.net.*;
    import java.util.Scanner;
    public class MultiClient {
        public static InetAddress host;
        public static int PORT = 1233;
        public static void main(String[] args) {
            try {
                host = InetAddress.getLocalHost();
            }catch (UnknownHostException uhe) {
                System.out.println("Error!");
                System.exit(1);
            sendMessages();
        private static void sendMessages() {
            Socket soket = null;
            try {
                soket = new Socket(host, PORT);
                Scanner networkInput = new Scanner(soket.getInputStream());
                PrintWriter networkOutput = new PrintWriter(soket.getOutputStream(), true);
                Scanner unos = new Scanner(System.in);
                String message, response;
                do {
                    System.out.println("Enter message");
                    message = unos.nextLine();
                    networkOutput.println(message);
                    response = networkInput.nextLine();
                    System.out.println("Server: " + response);
                }while (!message.equals("QUIT"));
            } catch (IOException e) {
                e.printStackTrace();
            finally {
                try{
                    System.out.println("Closing..");
                    soket.close();
                } catch (IOException e) {
                    System.out.println("Impossible to disconnect!");
                    System.exit(1);
    }ClientHandler:
    package ToJeTo;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class ClientHandler extends Thread {
        private Socket client;
        private Scanner input;
        private PrintWriter output;
        public ClientHandler(Socket serverskiSoket) {
            client = serverskiSoket;
            try {
            input = new Scanner(client.getInputStream());
            output = new PrintWriter(client.getOutputStream(), true);
            } catch (IOException e) {
                e.printStackTrace();
            public void run() {
                String received;
                do {
                received = input.nextLine();
                output.println("Reply: " + received);
                } while (!received.equals("QUIT"));
                try {
                    if (client != null)
                        System.out.println("Closing the connection...");
                        client.close();
                }catch (IOException e) {
                    System.out.println("Error!");
    }Those three classes are simple client server multi-threaded connection.

    Now the other part that contains the search function looks like this:
    package ToJeTo;
    import java.io.*;
    import java.util.*;
    public class User {
        String nickname;
        String ipAddress;
        static ArrayList<String> listOfFiles = new ArrayList<String>();
        File sharedFolder;
        String fileLocation;
        public User(String nickname, String ipAddress, String fileLocation) {
            this.nickname = nickname.toLowerCase();
            this.ipAddress = ipAddress;
            sharedFolder = new File(fileLocation);
            File[] files = sharedFolder.listFiles();
            for (int i = 0; i < files.length; i++) {
                listOfFiles.add(i, files.toString().substring(fileLocation.length()+1));
    public static void showTheList() {
    for (int i = 0; i < listOfFiles.size(); i++) {
    System.out.println(listOfFiles.get(i).toString());
    @Override
    public String toString() {
    return nickname + " " + ipAddress;
    User Manager:
    package ToJeTo;
    import java.io.*;
    import java.util.*;
    class UserManager {
        static ArrayList<User> allTheUsers = new ArrayList<User>();;
        public static void addUser(User newUser) {
            allTheUsers.add(newUser);
        public static void showAndStoreTheListOfUsers() throws FileNotFoundException, IOException {
            BufferedWriter out = new BufferedWriter(new FileWriter("List Of Users.txt"));
            for (int i = 0; i < allTheUsers.size(); i++) {
                    System.out.println(allTheUsers.get(i));
                    out.write(allTheUsers.get(i).toString());
                    out.newLine();
            out.close();
    }Request For File
    package ToJeTo;
    import java.util.*;
    public class RequestForFile {
        static ArrayList<String> listOfUsersWithFile = new ArrayList<String>();
        Scanner input;
        String fileName;
        public RequestForFile() {
            System.out.println("Type the wanted filename here: ");
            input = new Scanner(System.in);
            fileName = input.nextLine();
            for (User u : UserManager.allTheUsers) {
                for (String str : User.listOfFiles) {
                    if (str.equalsIgnoreCase(fileName))
                        listOfUsersWithFile.add(u.nickname);
        public RequestForFile(String fileName) {
            for (User u : UserManager.allTheUsers) {
                for (String str : User.listOfFiles) {
                    if (str.equalsIgnoreCase(fileName))
                        listOfUsersWithFile.add(u.nickname);
        public static List<String> getAll() {
            for (int i = 0; i < listOfUsersWithFile.size(); i++) {
                //System.out.println("User that has the file: " + listOfUsersWithFile.get(i));
            return listOfUsersWithFile;
    }Now this is the general idea.
    The user logs in with his nickname and ip address. He defines his own shared folder and makes it available for other users that log on to server.
    Now each user has their own list of files from a shared folder. It's an ArrayList.
    User manager class is there to store another list, a list of users that are connected with server.
    When the user is searching for a particular file, he is searching through all the users and their respective files lists. Therefore for each loop inside a for each loop.
    Now the problem is how to connect all that with Client and Server class and put it into one piece.
    GUI should look somewhat like this:

  • 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.

  • Moved jpeg files to other folder, now iPhoto can't find them

    I dragged/dropped some original jpeg files into a new folder to aggregate certain files together, but since they are now in a different folder iPhoto 9 can't find them. The thumbnails in iPhoto still remain, but results in the large black/grey "!" when I try to open them. I'd rather not rebuild the enormity of my entire photo library over this, so is there some other way to re-link thumbnails to files?
    iTunes makes this easy with music. When I click on a file name and it can't find the file, it offers to allow me to locate the file myself, and then it re-establishes the link between the iTunes library item and the file. No problem.
    How does one go about doing this in iPhoto for, say, a couple of dozen files without having to start over with an ENTIRE rebuild? I know exactly where the files are, and it seems ridiculous that iPhoto isn't equipped to track the whereabouts of an unchanged file that's simply been dragged from one folder to another.

    Did you do the moving of the image file in the Finder or do you have a reference library as asked by Larry? In either case moving the files is a recipe for disaster as you've found out. You must either move the files back to their original locations or try to get those photos back into iPhoto as follows:
    1 - Find the folder you moved the files into and COPY it to the Desktop.
    2 - in iPhoto delete the photos that you're having the problems with as you normally would even though you can't see see them. Also delete all the photos that are in the folder you moved the other files into.
    3 - drag the folder on the Desktop into iPhoto to import them as one event. If you get a duplicate warning I'd let it import the duplicate and use Duplicate Annihilator to find them so you can cull out the duplicate you don't want.
    Other than that you might have to start over from scratch as follows:
    Creating a new library while preserving the Events from the original library.
    1 - Move the existing library folder to the desktop
    2 - Open the library package like this.
    3 - Launch iPhoto and, when asked, select the option to create a new library.
    4 - Drag the Originals folder from the iPhoto Library on the desktop into the open iPhoto window.
    OT

  • Delete locked file from /Applications folder

    Hi there
    I used Clean My Mac to remove a file install - something I have done many times without any problems.
    This time though the application file was left behind in the /Applications folder and I am unable to move it to the Trash because it is locked.
    I have tried the following
    sudo chflags nouchg /Applications/CrashPlan.app
    This however does not resolve the issue and I am still unable to move the file to Trash - it does not remove the locked flag
    Does anyone have any other ideas or suggestions how to remove the file?

    Hi WIlliam
    I tried what you said but I get an unexpected result...
    Johns-Mac-Pro:~ John$ sudo rm -r /Applications/CrashPlan.app
    Password:
    rm: /Applications/CrashPlan.app/Contents: Operation not permitted
    override rwxrwxr-x  root/admin schg for /Applications/CrashPlan.app?
    I'm not sure how to respond to the question it is asking. I tried keying in Y but the response was
    override rwxrwxr-x  root/admin schg for /Applications/CrashPlan.app? y
    rm: /Applications/CrashPlan.app: Operation not permitted
    Johns-Mac-Pro:~ John$

  • Strange file in Applications folder, placeholder.txt

    Saw this file today, placeholder.txt, this file wasn't here before, it is in my Applications folder and on the dock as well, with contents (copy pasted):
    Placeholder to make sure directory gets created during a synch
    File creation date January 16, 2010 7:43 AM
    I don't have any backups or even a Mac back then. Was this added during 10.7.2, do you have this too? I'm just going to delete it.

    It's not in 10.7.2 only, I have 10.6.8, and it's there too. If you delete it, it reappears. Somepeople suggest it's from adobe digital editions.

  • Guide file in Applications Folder

    I am trying to clean out old software and such from my computer. There is a file in the Applications folder called Guide with a bunch of html items in it. What is this and can I delete it? So much came over from the old computer that I am sure is not necessary in Snow Leopard.
    Thanks

    Judy,
    I think it would  be safe to get rid of it. 

  • No files in applications folder after installing yosemite

    Problem description:
    After installing yosemite on MBP (early 2011) the applications folder is empty. How do I get them Back? Further the fan is blowing all the time and the MBP gets very warm.
    EtreCheck version: 2.0.6 (91)
    Report generated 25 oktober 2014 16:29:46 CEST
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.7 GHz Intel Core i7 CPU: 2-core
      8 GB RAM Upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 512 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 0:36:19
    Disk Information: ℹ️
      Hitachi HTS545050B9A302 disk0 : (500,11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) /  [Startup]: 498.88 GB (167.91 GB free)
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] VirtualAudioDriver (1 - SDK 10.6)
      [not loaded] com.ZTE.driver.ZTEUSBCDCACMControl (1.1.2) Support
      [not loaded] com.ZTE.driver.ZTEUSBCDCACMData (1.1.2) Support
      [not loaded] com.wacom.kext.pentablet (5.2.1) Support
      [not loaded] com.wacom.kext.wacomtablet (6.3.6b6 - SDK 10.8) Support
      [not loaded] net.osculator.driver.OSCulatorIOKit (1.2.2) Support
    Launch Agents: ℹ️
      [loaded] com.adobe.CS4ServiceManager.plist Support
      [loaded] com.google.keystone.agent.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.adobe.versioncueCS4.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist Support
      [invalid?] com.citrixonline.GoToMeeting.G2MUpdate.plist Support
      [loaded] com.divx.agent.postinstall.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
    User Login Items: ℹ️
      Dropbox Application (/Applications/Dropbox.app)
      Google Drive Application (/Applications/Google Drive.app)
      Google Chrome ApplicationHidden (/Applications/Google Chrome.app)
      FontExplorerXAutoload ApplicationHidden (/Users/[redacted]/Library/Application Support/Linotype/FontExplorer X/FontExplorerXAutoload.app)
      EvernoteHelper Application (/Users/[redacted]/.Trash/Evernote (450845).app/Contents/Library/LoginItems/EvernoteHelper.app)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 5.4.2.18903 Support
      WacomNetscape: Version: 2.1.0-1 - SDK 10.8 Support
      Google Earth Web Plug-in: Version: 6.0 Support
      Default Browser: Version: 600 - SDK 10.10
      OVSHelper: Version: 1.1 Support
      WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 Support
      Silverlight: Version: 5.1.30514.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      DivXBrowserPlugin: Version: 2.2 Support
      WidevineMediaOptimizer: Version: 6.0.0.12757 - SDK 10.7 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      Gears: Version: 1.0 Support
      CitrixICAClientPlugIn: Version: 11.2.0 Support
      googletalkbrowserplugin: Version: 5.4.2.18903 Support
      AdobePDFViewer: Version: 9.5.5 Support
      iPhotoPhotocast: Version: 6.0
      QuickTime Plugin: Version: 7.7.3
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User Internet Plug-ins: ℹ️
      CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 Support
      WebEx: Version: 1.0 Support
    Safari Extensions: ℹ️
      AdBlock
      Pinterest
    3rd Party Preference Panes: ℹ️
      Adobe Version Cue CS4  Support
      DivX  Support
      Flash Player  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: ON
      Auto backup: YES
      Destinations:
      WD 3T [Local]
      Total size: 3 TB
      Total number of backups: 52
      Oldest backup: 2013-05-25 18:11:16 +0000
      Last backup: 2014-10-24 11:12:27 +0000
      Size of backup disk: Excellent
      Backup size 3 TB > (Disk size 0 B X 3)
    Top Processes by CPU: ℹ️
        100% Finder
          99% Dock
          89% mds
          68% Spotlight
          1% Google Chrome
    Top Processes by Memory: ℹ️
      180 MB Finder
      163 MB Google Chrome
      120 MB WindowServer
      112 MB Spotlight
      112 MB com.apple.preferences.icloud.remoteservice
    Virtual Memory Information: ℹ️
      1.43 GB Free RAM
      3.57 GB Active RAM
      2.15 GB Inactive RAM
      1.43 GB Wired RAM
      2.02 GB Page-ins
      33 KB Page-outs

    sorry, this took a while, here it is:
    Christofs-MacBook-Pro-2:~ christofzurn$  chown -R :staff ~/
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /Girl and Snowcone.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /Happy Girls.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barA_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barA_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barB_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barB_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barC_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barC_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barD_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barD_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barE_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barE_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barF_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /stone_marble_barF_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /tile_paper_blue.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /tile_paper_gray.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /tile_paper_green.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /tile_paper_purple.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /tile_paper_red.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/evaluatie_visuals.key/theme-files /tile_paper_yellow.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/Girl and Snowcone.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/Happy Girls.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barA_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barA_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barB_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barB_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barC_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barC_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barD_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barD_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barE_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barE_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barF_flat-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/stone_marble_barF_grad-Layer0Image.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/tile_paper_blue.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/tile_paper_gray.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/tile_paper_green.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/tile_paper_purple.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/tile_paper_red.jpg: Operation not permitted
    chown: /Users/christofzurn//Documents/CCCZ_Projects/zzz___non active _done/Philips Design/3_Documents/Assessment_Evaluation/_old/Pictures_FE_Philips.key/theme-fil es/tile_paper_yellow.jpg: Operation not permitted

  • No java file in application folder

    After most recent update of Java, the Java does not work.  Looked for Preference file in application file and there is not one.  What do I do?

    Applications > Utilities > java Preferences.
    http://support.apple.com/kb/DL1572 Gives you an idea what the update did if it was 2012-006
    However, I understood there was a later one than that which removed Java SE6 altogether and provided a redirect to Oracle's website to download the latest Java 7 version.
    Can't find that one on Support Downloads now?

  • MAC help & moving folders

    I can no longer access MAC help - it just won't appear! Any ideas out there?
    Also [since I updated to OS10.4.5] I cannot move folders from one folder to another - when I click and hold on to something and move it out of the folder I get a 'no entry' icon and the object won't move. This means that, if I try and copy something from a disk to the hard drive, it won't do that either - same 'no entry' icon.
    Any ideas and help appreciated
    G4 AGP GRAPHICS [Upgraded processor to 1Gb]   Mac OS X (10.4.5)  

    krypton,
    Welcome to Apple Discussions.
    Troubleshooting Help Viewer, by Dr. Smoke may be "Helpful."
    You can also try this: FIXED: Help Viewer crashes or shows blank window, by Gulliver.
    Finally, use Disk Utility to Repair Permissions for your folder moving problem.
    ;~)

Maybe you are looking for

  • Macbook pro 17" (mid 2010) battery replacement

    Hi guys, Just a first time asking question on this forum looking for some answers. I had my MBP since new (bought in 2010 - still under applecare) and had my battery replaced first time just 4 days ago. the test of the HW in Genius bar clearly showed

  • Javascript to JSP question...Can javascript function set session attributes

    hello, i have a web app that, on one of its pages, displays "tabbed pane" as an image map at the top (a la amazon.com). my problem is this: each "logical" page contains separate forms that all use the same javabean. in other words, imagine that the t

  • Help Please with Key Signature/Loops

    Hello, I want to just make sure apple loops are playing pack in the project in the original key as they exist in the loop browser. I notice in the arrange window under global tracks, it defaults to key of C. Do I have to change this to everytime I ad

  • Why did my 5s stop finding my SIM card

    Why is phone not seeing my SIM card intermittently

  • Mail Behavior has changed!

    I do not know which button i pressed while using mail ... now when i start mail i have no preview of mails! I have top double click on every email to read it! Can someone please help me! Thanks