Aperture repair database deleted all files

Hi Everyone!
I was trying to open an old Aperture database that I haven't used in a while, so Aperture told me it would need to update the Library. When it proceeded, however, it told me that it couldn't open the .aplibrary, so I opened it with cmd+alt pressed, selected Repair permissions, and then, Repair database. That's when the fit hit the shan: Aperture opened something right away, and it's a library with the correct name - although completely empty. No pictures, no folders, no projects, nothing.
I immediately freaked out and closed Aperture, and took a look at the library file: it shrunk from some 60GB to 800MB. Looking inside, there are no more masters anymore. The free space on the hard drive, however, remains about the same, so it appears that the data itself is still there.
Unfortunately, I do not have a backup of that old library (I'm still beating myself up about that!), so here's my question: what to do next? Is it possible that Aperture replaced the old library folder with the new, empty one, and hid the old one somewhere in the file system?
Any help is greatly appreciated!
Dorian

My similar horror story had a good ending after all, and maybe this will help someone else.
I connected my iphone to the MacBookPro and fired up Aperture to import photos.
Aperture said it needed to upgrade the database, and I said fine.
It said there was an error and I would need to hold Option + Command and restart Aperture, and do the "Repair Database" option.
I did.
Aperture then opened to a brand new, empty Aperture library. All projects gone, and all images gone.
I searched, came here, tried everything, to no avail.
At this point I called Apple. They graciously initiated 90 days of complimentary support for Aperture, and helped me.
While I could not locate a single Aperture library on my harddrive using the Finder method, combined with a "show hidden files" option... the Apple support agent guided me to search for them using Aperture itself:
In Aperture: File > Switch to Library > Other/New
We found that my old library had apparently been moved (no doubt by me, during an accidental drag and drop) into a subfolder of my Pictures folder. That was the reason why, when Aperture was being started, the lack of a library in the usual location (root of the Pictures folder) caused it to create a new one, which was, of course, blank.
The above step (in Aperture: File > Switch to Library > Other/New) not only revealed the other library that contained all the old files, but it also revealed the location of it (scan near the bottom of the dialog box).
He had me open it to verify all the pics were still there.
All I had to do was close Aperture, then drag and drop it from the subfolder back to the root folder (Pictures) and I was back in business.
It does not sound like your situation is the same as mine, but this is something to consider.

Similar Messages

  • Can I delete all files and users (including admin account) without re-installing SL?

    I have a 1st generation Macbook Air, running Snow Leopard 10.6.8.  Just bought myself a new MBA, want to sell the old one (privately, not soliciting here).
    The original install disks were Leopard.  I bought a family pack SL and upgraded the MBA at that point.  Earlier this year I sold my old Mac Mini (when I upgraded) and included the SL install disks with that sale (stupid of me).
    Now I want to sell the old MBA.  Ideally, I'd have a clean install on SL on it, minus all previous files and accounts.  I've done that before when selling old computers, reformatted / erased the HD, then reinstalled the OS.  But I don't have the SL disk anymore, and I don't really want to pay for it just to prep this notebook for sale.
    AFAICT, my options are:
    wipe the HD and reinstall Leopard (the only OSX disks I have).  Whoever buys it from me would need to upgrade to SL themselves, and from there to Lion if they want.
    somehow try to delete all files and users without touching the current install of SL.  I'm not terribly worried about security of what little information is on the MBA (nothing important to me), so I don't mind trashing files and then emptying trash instead of wiping the HD block by block. 
    Any ideas for how to do #2?  I can trash all files/folders under /user, uninstall all applications and delete their folders from Library, uninstall all browsers except Safari and wipe the history from that...
    Is there other stuff I should be deleting?  plist files, maybe?  I'm leery of messing around too much and disrupting the install of the underlying OS.
    Can I also delete the admin account (or rename it "admin" with a generic default password?)?
    Any other suggestions?  Thanks.

    Trashing files you have created is relatively easy. Getting rid of an account is a bit harder. Trashing the .plist files, etc., that may contain personal info is a lot harder, and there is always the risk that you will miss something.
    Best, and easiest, and customary, is to do option #1 - wipe the drive and re-install the original OS from the original disk set. The receiver of the machine can then decide which OS they want to upgrade it to, and purchse accordingly.
    The original disk set for that machine should be included with it when it is sold.

  • Time capsule intern.1TB hard drive.How can I delete all files

    Hello How can I delete all files from my timecapsule.
    I have connectet it with Wifi or ethernet. It is not possible.
    I have made a reset.
    I have tried it often.
    Please help
    Greetings from Vienna
    Pepimeier

    If you open Macintosh HD > Applications > Utiltiies > AirPort Utility and click Manual Setup, are you able to access the settings for the Time Capsule?
    Or, does AirPort Utility scan for the Time Capsule and then not find it?

  • Can i delete ALL files in directory ?

    i create a upload test using FileReference & PHP.
    In this scenario user upload files to http server.
    Now how can i delete all files in /files/uploads folder in AS3
    AS3 Code:
    req = new URLRequest();
    req.url = ( stage.loaderInfo.parameters.f )? stage.loaderInfo.parameters.f : "http://www.website.com/test/upload.php";
    uploadFile = new FileReference();
    select_btn.addEventListener( MouseEvent.CLICK, browse );
    uploadFile.addEventListener( Event.COMPLETE, complete_func );
    uploadFile.addEventListener( DataEvent.UPLOAD_COMPLETE_DATA, show_message );
    function browse( e:MouseEvent )
              filefilters = [new FileFilter('Images',"*.jpg;*.png;*.gif")];
              uploadFile.browse( filefilters );
    function complete_func( e:Event )
              trace( 'complete !' );
    function show_message(e:DataEvent)
    if (e.data == 'ok')
              label_txt.text = 'The file has been uploaded.';
    else if ( e.data == 'error')
              label_txt.text = 'The file could not be uploaded.';
    PHP Code:
    <?php
    $uploads_dir = './files/uploads';
    if( $_FILES['Filedata']['error'] == 0 ){
              if( move_uploaded_file( $_FILES['Filedata']['tmp_name'], $uploads_dir.$_FILES['Filedata']['name'] ) ){
                        echo 'ok';
                        exit();
    echo 'error';
    exit();
    ?>

    You need call another PHP file
    <?php
       $directory = './files/uploads';
       getDirectoryList ($directory);  
       //This function find all the files in the directory
       function getDirectoryList ($directory)
         // create an array to hold directory list
         $results = array();
         // create a handler for the directory
         $handler = opendir($directory);
         // open directory and walk through the filenames
         while ($file = readdir($handler)) {
           // if file isn't this directory or its parent, add it to the results
           if ($file != "." && $file != "..") {
        //$results[] = $file;
         // Delete Files
        $filename = $file;
      unlink($filename); //this delete a file
         // tidy up: close the handler
         closedir($handler);
    ?>

  • Why won't preview let me delete all files (instead of all but one)

    In all OSX versions up to snow leopard in preview there was the option to select all open items and move the files to the trash. For some reason unknown to me, in 10.8.5 mountain lion that option no longer exists. Now preview lets me delete all files except one. If you have 2 images open you can move 1 to the trash. If you have 99 open you can move 98 to trash and if you have 1 open, you cannot move it to trash. Is there some code available where I can undo this restriction?

    Do you also have them on another computer, iPad or iPhone,  IF you do then it may be syncing them back

  • HT1923 This article contains the only thing that worked for me.  I also had to sign out of iCloud and uninstall it.  Then I had to delete all files and folders from all of those applications that were under Program Files, Program Files x86, and Users.

    This article contains the only thing that worked for me.  I also had to sign out of iCloud and uninstall it.  Then I had to delete all files and folders from all of those applications that were under Program Files, Program Files x86, Program Data and Users.  My iPhone 4 will now sync with iTunes both in its USB-connected  mini dock and over Wi-Fi.  It's unfortunate (negligent programming on the part of Apple?) that the upgrade to iTunes 11 did not remove all of those files as part of the upgrade process. 

    I am having the same issue....Same address for years - same as USPS - I tried 5 times (3 macs and 2 iPhones) and now i have 5 CHARGES for 1.00 each on my credit card. I took the credit card info off so they don't charge me anymore. How can they charge me yet still not allow me to download free updates and say I have an invalid address? I'm sure I will spend weeks or months trying to get a credit out of these incompetent idiots.

  • I have an old mac and want to delete all files before i sell

    i have an old mac and want to delete all files before i sell

    Check out
    http://www.mactalk.com.au/content/preparing-your-old-mac-sale-1127/
    or
    http://hivelogic.com/articles/how-to-prepare-a-mac-for-sale/
    Dennis

  • I have a problem with my mac  i have too many  archives and programs and i want to delete all files and start at the begin my mac with out do format

    i have a problem with my mac  i have too many  archives and programs and i want to delete all files and start at the begin my mac with out do format

    I do not recommend reformatting your harddrive and reloading your software.  This is a Windows thing. On an older mac it may be difficult to find all your software again.
    Best to have greater than 2gig of free space.  Many posters to these forums state that you need much more free space: 5 gig to 10 gig or 10 percent of you hd size.
    (0)
    Be careful when deleting files. A lot of people have trashed their system when deleting things. Place things in trash. Reboot & run your applications. Empty trash.
    Go after large files that you have created & know what they are.  Do not delete small files that are in a folder you do not know what the folder is for. Anything that is less than a megabyte is a small file these days.
    (1)
    Run
    OmniDiskSweeper
    "The simple, fast way to save disk space"
    OmniDiskSweeper is now free!
    http://www.omnigroup.com/applications/omnidisksweeper/download/
    This will give you a list of files and folders sorted by size. Go after things you know that are big.
    (2)
    These pages have some hints on freeing up space:
    http://thexlab.com/faqs/freeingspace.html
    http://www.macmaps.com/diskfull.html
    (3)
    Buy an external firewire harddrive.
    For a PPC computer, I recommend a firewire drive.
    Has everything interface:
    FireWire 800/400 + USB2, + eSATA 'Quad Interface'
    save a little money interface:
    FireWire 400 + USB 2.0
    This web page lists both external harddrive types. You may need to scroll to the right to see both.
    http://eshop.macsales.com/shop/firewire/1394/USB/EliteAL/eSATA_FW800_FW400_USB
    (4)
    Buy a flash card.

  • I need free space in my hard disk-- i want to delete all files. i want to leave my mac book like the first time.. what must to do ?

    i want delete all files and leave my mac book pro like the first time. i have system 10.7.5 , i have lot of files and need memory.. what must to do ?

    Install or Reinstall Mavericks or Mountain Lion from Scratch
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    OS X Mavericks- Erase and reinstall OS X
    OS X Mountain Lion- Erase and reinstall OS X
    OS X Lion- Erase and reinstall Mac OS X
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

  • I previously had PS CS5 Trial installed but removed it using both Control Panel Programs and deleting all files from the CS5 directory on Program Files.  I then installed a purchased product from Adobe disc using the serial number on the case.  But when I

    I previously had PS CS5 Trial installed but removed it using both Control Panel Programs and deleting all files from the CS5 directory on Program Files.  I then installed a purchased product from Adobe disc using the serial number on the case.  But when I try to launch it, I get a screen headed Photoshop CS5 Extended Trial.  It asks for the serial number and says that my trial has expired.  It rejects the serial number from the Adobe case saying "This Serial Number is not valid for this product".  It thinks that I still have the expired Trial Version installed.  How do I convince it (the program) that the Trial Version is long gone and the currently installed product was installed with a valid and accepted serial number????

    Let me know how it goes. Go into your Adobe account and register your serial number asap.
    https://www.adobe.com/account/my-products-services.html
    That way, should you lose it or you need support, it is on record that it's yours and you can fetch your s/n it from anywhere.
    There are too may sad stories here, where people forgot and the box is buried or lost.
    Gene

  • Time machine  how to delete all files?

    time machine:   how to empty and delete all files?

    Please check to let us know what version of AirPort Utility that you have so we can provide the correct instructions to erase the Time Capule disk.
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click the AirPort Utility menu just to the right of the Apple icon in the upper left corner of the screen
    Choose About AirPort Utility
    What version of AirPort Utility do you have?

  • Emptying trash securely does not delete all files? Any ideas?

    When I try and empty trash (securely) it does not delete all files, so I am left with files in the Trash?  Any ideas?

    Select one of the items in the Trash and open the Info window. What does it show for Where?

  • Already deleted all files from my MINIMAC and still appears to have only 200 gb free. How do I format the macmini?

    Already deleted all files from my MINIMAC and still appears to have only 200 gb free. How do I format the macmini?

    If you deleted from within the OS, did you empty the Trash?

  • Cant unninstall lightroom 5.4 needed for install update 5.5, i have delete all file and registry but install fails

    Cant unninstall lightroom 5.4 needed for install update 5.5, i have delete all file and registry but install fails again and again, now i i cant use lightrrom .. grins.
    I use SSD disk and i cant have lot of uninstal file (have to clean disk often)
    Thanks for help

    Hello Jeff,
    Many thanks for your answer, i use windows 8.1! I have found the problems: For install the news version the install need the old installer (but i delete all installer, cause they use a lot place on hard drive  (SSD)).
    I have desinstall the whole Adobe and réinstalled it, i have save the whole installer on a external disk. So when the installer asked the old installer i indicate to programm my external disk ans all works good now.
    Many thanks for you help, i have just do not to delete old file (sad to have to save old installler just for install the new).
    Wallie
    (sorry my english)

  • Deleting all files in a directory

    Hi,
    Is it possible to use cffile to delete all files in a
    directory. I have a function that creates a file in seperate parts
    and places the finished file into a folder. But I need a check to
    delete all files currently existing in said folder. I understand it
    is possible to query a folder for existing files and then use that
    query with cffile to delete the files... I just don't know how to
    do it.
    Thanks for your help

    I am not postivie, but I think I recall learning that the
    delete all function is prohibited via CF. You can delete specific
    files, though.
    If this is, in fact, the case, you could query the directory,
    and then loop through the resultant query, deleting each file one
    at a time.

Maybe you are looking for

  • How can I redownload an app I bought?

    I bought the latest version of Growl on the App store, then later forgot I already had it and used the Growl uninstaller to remove it, thinking to buy the latest version...duh. Now on the app store it says it is already installed and I can't seem to

  • Suddenly, non of all my projects are starting when opening my Premier Pro 6.0. What is the problem, all of a sudden?...

    HI! Please help me! I'm a kind of desperate since my Premiere Pro suddenly doesn't seen to want to open all my files I'm working on. A message appears instead: "This project could not be loaded, it may be damaged or containing outdated elements." I d

  • Best picture file format

    I generally don't do photo montages.  However, I agreed to do a 200 pic photo montage for a friend.  Scanned all pics and saved as jpegs - Exported to media encoder and it's taking forever to encode (going on 20 minutes now).  what is the best file f

  • Windows Convert...

    Ok so I got myself a PowerMac G4 from ebay, and upgraded it, and it now has the following specs: - PPC G4 400mhz - 758mb Ram - AGP Radeon 7000 64mb (running at AGP 2x, was originally a PC version, so I had it flashed with mac firmware) - SuperDrive -

  • Upgrading from 10.3.9 to 10.4.3

    I am going to install 10.4.3 on my iMac which currently has 10.3.9. I can do a straight install or install and archive. I don't understand what, if and advantage there is to the archive option, and don't know whether I should do it. I use the compute