IPhoto '08 - can I browse "iPhoto Library" package with Terminal?

I have a need to access via Terminal the files and subfolders of the "iPhoto Library." As we know well, Apple made the iPhoto '08 library into a "package." I can right-click on the package, select "show package contents" and then browse via Finder as normal. Can I do the same in Terminal? I try to open the iPhoto Library package and I get an error that it is not a folder. Is there a command to open Apple package files?

In the Terminal, enter 'cd' without the quote marks, type a space, and then drag the package into the Terminal window.
(23659)

Similar Messages

  • Can the iPhoto Library package file be recreated?

    I recently moved my iPhoto library to a new LaCie solid state external hard drive, because it had reached 130GB in size and was taking up too much space on my hard drive. My iPhoto library has 30,000 photos with lots of events, smart albums and metadata (faces, keywords, etc.). Unfortunately the external hard drive failed and I had to pay for data recovery services. When I got the external hard drive back, the Masters folders were all there with my photos, but the iPhoto Library package file seems to be missing. Is there anyway to recreate the iPhoto Library package to include all the files AND the associated metadata?
    I found instructions on how to start from scratch by importing the Masters...but this method does not retain metadata. Any ideas would be really appreciated. Worst case scenario, I can go back to a Time Machine back-up from June 2014 and use that as a starting point, but I'd much rather not have to take that route.

    but the iPhoto Library package file seems to be missing.
    You cannot recreate the iphoto library package from your Masters folder. It is an intricate web of linked files.  Use your most recent backup as a starting point, and then add the newer files from your recovered Masters folder.

  • Can't Import iPhoto Library "package" into Aperture 3

    Hi there, I've recently made a backup of all my data and did a clean reinstall of Lion, so the problem is that I won't be using my iLife 11 Suite, so as for my photos I want to take advantage of my recently purchased copy of Aperture 3 but when I ever try to import my iPhoto Library Package, it won't let me, this message pops:
    Invalid iPhoto Library
    Importing libraries from versions earlier than iPhoto 7.1.5 is not supported. Please upgrade your iPhoto library with iPhoto 7.1.5 or later.
    So, searched into some discussions and realize I had to upgrade or restore my library using iPhoto.
    Is there any other way to get all my photos and videos in that package, into my aperture library?
    One thing to consider is that I can right-click this package and open its contents and then I can get individual files and view everything, but since there's this function for importing all of the library, I would really love to do it this way, not individually.
    NEED HELP PLEASE!

    Ii you are sure that all of your iPhoto images have been transferred safely, you can remove the you iPhoto Library from your system drive. But keep a backup copy of it on an external drive or thumbsdrive- sometimes you'll notice only later that some images could not be imported properly because of some corruption in the iPhoto library, and then it will be very helpful to still be able to open your old iPhoto Library.
    Regards
    Léonie

  • Determining folder sizes inside iPhoto Library Package, eg Originals/2009

    In iPhoto '09 is it possible to determine (in an automated fashion) the size of the folders inside the Originals folder inside the iPhoto Library Package.
    I'm working on a MacBook Pro with limited space so I wanted to identify the folders that are taking up the most space and try to remove them.
    Specifically, I'm looking at the following location:
    Originals/2008/...
    Originals/2009/...
    Those seem to be the largest folders, so removing some of the largest ones will really help for a trip I have coming up.
    Thanks for the insights.

    Thanks for the info on DiskInventoryX. Unfortunately it cannot look inside of the iPhoto Library Package, so I guess I need to keep looking into the true format of a package... Is a package similar to a tgz file?
    It is unfortunate that the Mac doesn't automatically list the size of the contents of folders in the finder. Having that information listed in the finder would be very beneficial...
    Since it sounds like iPhoto is so sensitive about folder structure modifications and does not have the ability to adapt to changes, I may need to look into another program that is a bit more forgiving for working with large numbers of photographs that are only temporarily on the MacBook Pro before being moved over to the Desktop. My workflow requires that most photos and videos are temporarily stored and worked on the MacBook Pro and then (a few weeks over) moved off and over to a desktop for permanent storage and further editing.
    Thanks again for all the thoughts and insights, as it is much appreciated...

  • Can we use dbms_output.put_line package with forall statement

    Hello Everybody
    Can we use dbms_output.put_line package with forall or can we use insert,update and delete only
    declare
    type emp_rec is table of emp%rowtype
    index by binary_integer;
    t emp_rec;
    begin
    select * bulk collect into t from emp;
    forall i in t.first..t.last
    dbms_output.put_line(t(i).name);
    end;Thanks & Regards
    peeyush
    Edited by: Peeyush on Nov 25, 2010 11:45 PM

    MichaelS wrote:
    Well as the docs explain (though not very clear and detailed, I admit) you can use a dynamic sql statement (execute immediate) with FORALL.You got me interested in the performance side doing this Michael - running PL/SQL code via a FORALL loop.
    It is faster than using a normal FOR loop to execute dynamic PL/SQL - a bit surprising as I expected another context switch to be in there. But seems like the PL/SQL engine is a more clever at optimisation than what I originally credited it with.. ;-)
    Of course - pre-compiled/static PL/SQL code in a FOR loop is the fastest, as expected.
    SQL> declare
      2          type TNumbers is table of number;
      3 
      4          type TTimes is record(
      5                  for_all number,
      6                  for_dynamic number,
      7                  for_static number
      8          );
      9 
    10          type TTimesTable is table of TTimes;
    11 
    12          MAX_ITERATIONS  constant number := 10;
    13 
    14          plBlock         varchar2(1000) :=
    15          'declare i number;
    16          begin i:= :var / 10; end;';
    17 
    18          performance     TTimesTable;
    19          t1              number;
    20          bindVar         TNumbers;
    21          n               number;
    22  begin
    23          select
    24                  level bulk collect into bindVar
    25          from    dual
    26          connect by level <= 10000;
    27 
    28          dbms_output.put_line( 'Iterations: '||bindVar.Count||' for loop cycle(s)' );
    29 
    30          performance := new TTimesTable();
    31          performance.Extend( MAX_ITERATIONS );
    32 
    33          for j in 1..MAX_ITERATIONS
    34          loop
    35                  t1 := dbms_utility.get_time;
    36                  forall i in 1..bindVar.Count
    37                          execute immediate plBlock using bindVar(i);
    38                  performance(j).for_all := dbms_utility.get_time-t1;
    39 
    40                  t1 := dbms_utility.get_time;
    41                  for i in 1..bindVar.Count
    42                  loop
    43                          execute immediate plBlock using bindVar(i);
    44                  end loop;
    45                  performance(j).for_dynamic := dbms_utility.get_time-t1;
    46 
    47                  t1 := dbms_utility.get_time;
    48                  for i in 1..bindVar.Count
    49                  loop
    50                          n := bindVar(i) / 10;
    51                  end loop;
    52                  performance(j).for_static := dbms_utility.get_time-t1;
    53          end loop;
    54 
    55          dbms_output.put_line( 'Times in 100th of a second' );
    56          dbms_output.put_line( rpad('for all',15) || rpad('for dynamic',15) || rpad('for static',15) );
    57          for i in 1..performance.Count
    58          loop
    59                  dbms_output.put_line(
    60                          rpad( performance(i).for_all, 15 )||' '||
    61                          rpad( performance(i).for_dynamic, 15 )||' '||
    62                          rpad( performance(i).for_static, 15)
    63                  );
    64          end loop;
    65 
    66  end;
    67  /
    Iterations: 10000 for loop cycle(s)
    Times in 100th of a second
    for all        for dynamic    for static
    10              72              0
    6               37              0
    6               37              0
    6               37              0
    6               36              0
    6               37              1
    5               37              0
    5               37              0
    6               37              1
    5               37              0
    PL/SQL procedure successfully completed.
    SQL>

  • IPhoto Library package HUGE!

    Hi, I'm new with iPhoto, I've install the 09 version but I already have my pictures organized and want to keep it that way on my external hard drive so I didn't select the copy option in the advanced preferences panel. When I finished the import of my 137Gb picture collection The size of the iPhoto library was 52Gb!!!! I think it too big. Am I right? Is it supposed to be THAT big (almost half of the original folder)?
    If there is any way I can minimized the size of this library please let me know... maybe I'm doing something wrong when importing...
    Thanks, nae

    Welcome to the Apple Discussions.
    This sounds too big all right. Do you have many photos that have auto-rotate flags?
    When you use a Referenced Library, iPhoto creates an alias in the Originals Folder that points to your file. It will still create a thumbnail and, if you modify the pics, a Modified version within the iPhoto Library Folder. So if you have many auto-rated photos that will cause this issue.
    Can I caution you strongly about the dangers of running a Referenced Library when the Library is on your Internal and the Files are on an External.
    If you lose the link between the alias in the Package and the File on the external the only way to correct this is to re-link each alias one by one.
    You can quickly recreate your current structure in iPhoto. Simply start at the bottom of your hierarchy and drag a folder of images to the iPhoto Source Pane (that’s the left hand pane) and iPhoto will create an Album of these pics. You can then create the enclosing folders in iPhoto (File -> New Folder and drag the album to it.
    Mind you, if your folder hierarchy is based on date then that’s rather pointless with the Calendar tool in iPhoto and date based Smart Albums.
    Some general comments on running a Referenced Library
    There are a number of potential pitfalls using this system.
    1. Import and deleting pics are more complex procedures
    2. You cannot move or rename the files on your system or iPhoto will lose track of them on systems prior to 10.5 and iPhoto 08. Even with the later versions issues can still arise if you move the referenced files to new volumes or between volumes.
    3. Most importantly, migrating to a new disk or computer can be much more complex.
    Always allowing for personal preference, I've yet to see a good reason to run iPhoto in referenced mode unless you're using two photo organisers.
    If disk space is an issue, you can run an entire iPhoto Library from an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    If you're concerned about accessing the files, there are many, many ways to access your files in iPhoto:
    *For Users of 10.5 Only*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and 10.5* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Regards
    TD

  • My iphoto library folder with files of my pictures is missing from the pictures folder, only the application icon remains.  I have read through similar discussions but have not managed to fix the problem with the recommended solutions.  Can anyone help?

    I have a Macbook Pro with iphoto '08 running on Mac OS X version 10.5.8.  I used to be able to go to my pictures folder on my HD and access my pictures via that iphoto library folder.  There used to be a small arrow next to the iphoto icon with all the albums then listed within the folder (to the right).  That arrow is now gone and all I have is the iphoto application icon which just reopens iphoto when I click on it, but I want to be able to access the data files.  Somehow I do have files btwn 2008 and 2009 but it hasn't created these since then...Could someone please help me to restore this ability?  I have read other similar posts but they seem to be related to lost data all together and I do luckily have all my pictures in iphoto still. I just can't access them in the pictures folder which means I can't access them on my external hard drive.  I am now out of start up disc space somehow so I figured I had to delete some albums (I have 12,090 pictures) and do have them backed up but want to make sure I can go back for them when I need them.  I did export all the pictures to a folder on the hard drive but it is all 12,090 in one long list with only numbers as names and not in any order, this will be a nightmare to access later!  Please help!  Thank you!

    You can’t open your current photo library using this version of iPhoto.
    That indicates that that is your library.  Put it in your Pictures folder if it already isn't there and make sure it's named "iPhoto Library".  It should look like this:
    Now launch iPhoto with the Option key held down and select that library to open.  If you get that same message close iPhoto and try the following;
    Apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot. 
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.

  • Pictures missing, but are inside iphoto library package

    I have all my photo's on an external drive. My pictures where imported and showing up in iphoto, but it crashed and now some photo's are missing. Using finder I can see them, but they don't show. What can I do to make them show up. I tried a repair but that didn't seem to work.
    Thanks
    Robert

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • Cleaning up iPhoto Library "package"

    I've been using iPhoto, probably since it first came out, and the iPhoto Library seems to have some legacy folders and files and it. I'd like to clean it up as much as possible. Which files and folders should I keep?
    Thanks,
    Tony

    Well the bad permissions were 777 when I think they should be 755. Anyway, as I said, I ended up restoring an old version and the permissions in the backup were 777, but when I restored them they were 755, which is weird, but is also exactly what I wanted.
    Also, I understand that many of the files in the package are important (although a lot of them have also been deprecated in previous versions and have been renamed to other things). The only item I deleted was the "2006" folder, which has no contents (besides .DS_Store), its total size was 8 kb, and it was created in March 2006 and last modified in May 2006. I don't plan on touching the package anymore. I am still also able to open iPhoto, see that my thousands of photos are in there, and was able to transfer them to my iPod just now as well. I assume this means the database still works, and hopefully it won't die on my in the near future after what I did to it, although I don't think it will.

  • IPhoto Library package changes

    Time Machine looks for files that have changed since the last backup. Since the iPhoto Library file is a package, does adding, deleting, renaming or editing a single photo result in Time Machine creating a backup of the complete package or just the files and folders within the package that changed? Or does the package just act like a folder?

    Just the changes.
    When you update an application (also a package), only the changes are backed-up.
    Do note, however, that if iPhoto is open when a backup is running, the changes may not get backed-up: http://support.apple.com/kb/HT4116
    It will "catch up" on the next backup when iPhoto isn't open.

  • IPhoto Library package deleted

    Mac; OSXYosemite 10.10.13. Didn't realize this until my college son was home, asking where are all the pictures, he couldn't find on iPhoto.  I showed him i saved them on a drive in different file folders, a few months ago...maybe in March 2015.  When we opened those folders, the pictures looked lighter, and not all my pictures were there. He was looking for the iPhoto Library.  Couldn't find it, anywhere.  When I moved my pictures over, I also deleted everything I thought I didn't need.....  then...I deleted the trash.... 

    Thanks for sharing this example of why everyone must always have a good backup and anytime you move things around you just verify each step before going to the next one - sorry about your photos but thanks again for sharing and hopefully saving others from losing their photos
    LN

  • Iphoto library incompatibility with other applications

    Don't like the way iphoto hogs all the images in iphoto library and does not allow other applications to browse or use the images. Do we have to have two photo archives (pictures and iphoto library) if we want to use more effective photo editing software. i.e.. edit from pictures folder then import into iphoto? Thus using up double the amount of disk space.

    Welcome to the Apple Discussions. To use 3rd party editing software seamlessly with iPhoto see the following:
    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    You can use this method with any 3rd party editor except for the saving part which is unique to PS and PSE.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • How to edit external iPhoto Library pictures with an external editor?

    That's my question.
    I have my iPhoto Library on an external HD and I want to modify my pics with PSE 11. I've set my iPhoto prefs to do this but it just doesn't work. When I click on "edit with an externale editor" PSE 11 opens but doesn't show the picture, why is that?

    The file  you want to select is in the Adobe Photoshop Elements 10/Suport Files folder:
    It should be the same for the earlier version of PSE as I recall.
    Using Photoshop or Photoshop Elements as Your Editor of Choice in iPhoto.
    1 - select Photoshop or Photoshop Elememts as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done. 
    3 - however, if you get the navigation window
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements  the Saving File preferences should be configured as shown:
    I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Note:  to switch between iPhoto and PS or PSE as the editor of choice Control (right)-click on the thumbnail and select either Edit in iPhoto or Edit in External Editor from the contextual menu. If you use iPhoto to edit more than PSE re-select iPhoto in the iPhoto General preference pane. Then iPhoto will be the default editor and you can use the contextual menu to select PSE for your editor when desired.
    OT

  • IPhoto 6 crashes when opening with iPhoto Library Manager with external sto

    I've had stored many iPhoto libraries on my Freecom Mobile Drive 160gb, accessing them via iPhoto Library Manager, for years. Suddenly, when I try to open a library, iPhoto crashes. I'm still able to go into the storage disk so I don't think this is damaged. I've also reinstalled IPLManager (using original 3.2.3), without any luck.
    I get this crash report (greatly abbreviated)
    PID: 809
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Does this make sense to anyone? I can't understand why one minute everything is fine, and then the next a procedure which has worked for a long time, doesn't. BTW, I've taken off lots of junk from the Freecom external drive (have 44gb available) and 3gb available on my iBook.
    Many thanks in advance for any help or advice.

    That
    Exception Codes: KERNPROTECTIONFAILURE
    is always a Data Related issue.
    So use iPhoto Library Manager to rebuild the Library. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • How to replace my iphoto library 08 with version 11 on my external hard drive

    I have my iphoto library version 08 on an external drive. I just downloaded the version 11 onto my internal hard drive. I have moved the version 11 to my external hard drive. How do I merge the 2 versions as the version 11 did not replace the version 08
    Thank you for your help!

    Does the new iPHoto 11 library contain photos that your iPhoto 08 library doesn't?  If so do the following:
    Open your verions 08 library with iPhoto 11 to convert it to iPhoto 9 (11).  Then use the paid version of  iPhoto Library Manager  to merge the two libraries into a new 3rd library.
    When the merge is completed launch iPhoto with the Option key held down and select the new 3rd library.  When you're satisfied that the new library has all of your photos from the other two you can delete them.
    If the iPhoto 11 library is empty just replace it with your iPhoto 08 library and open it with iPhoto 9 (11) to convert it to version 9.
    OT

Maybe you are looking for