Lost Lightroom Edits After Renaming and Re-Importing Folder

Hello Experts,
I renamed a folder and it seemed to lose my files.  So I re-imported from the same (renamed) folder.  Now all my edits are gone.  Is there a way to restore my edits?  (I am using a Mac, by the way.  Just in case that is relevant to the question).  I have portraits that are due to my client, so any help that someone can offer would be greatly appreciated.
Thanks,
Josh

Hi Josh
If you rename files or folders using Finder, then Lightroom will no nothing about it and you will have broken the original links in the database. Always rename, move etc, within Lightroom.
Is the original folder still showing up, with missing files? If so you could try to get the files back to their original state on the hard drive and then re-connect the missing files - the thumbnails will have the missing file icon. If you have deleted the original folder; then your only hope is to use a previous catalog backup to turn the clock back.

Similar Messages

  • Help! Can I recover my Lightroom edits after renaming source folders and re-syncing?

    My source files were a mess, so I went in and roughly organized them, creating folders and grouping them by type. I figured I could just re-link the offline files back in LR.
    In Lightroom, I right-clicked on my root photo folder and chose "Syncronize Folder" - what I didn't realize is that it seems to have deleted what I had and reimported it again. So my problem is that all my Lightroom edits on these files are now gone. All I have are raw, untouched pics.
    I backup regularly. Is there a way to restore my edits? All the underlying filenames are the same.
    I hope so...
    Lightroom 3.6
    OSX 10.6.8

    Hello,
    If you have your backups then you still have all your edits included in the xmp files. Now all you have to do is to match the actual files with their edits (xmp files).
    I`m afraid you`ll have to do it manually because since you radically changed your structure by creating folders and subfolders using the Mac OS instead of doing it from within Ligthroom (you know you can do that from Lightroo, don`t you?).
    For example, let`s say you have a file named "_MG_8111.CR2" which looks like it`s untouched now. If you can find its own xmp file named "_MG_8111.xmp" in your backup, just copy it to the same folder with "_MG_8111.CR2".
    If you open Lightroom and syncronize the folder again your edits will be visible again. I would suggest to try it first with one or two images and when you`re positive everything is OK continue with all the other ones.
    Good luck
    Nelu Goia

  • I lost all apps after reseting and updating to IOS 7.1.1 How do I get them back?

    I lost all apps after reseting and updating to IOS 7.1.1 How do I get them back?
    I did a reset of my phone yesterday and now when I go to purchaed to download my paurchsed tabs there is nothing there.
    I see them in my ipad but they are not in my itunes app section either.
    I searched for one in the app store and it usually said "open" or had the cloud icon with the little arrow to downlaod again (free). But none of that shows up at all this time. All the apps that I'm missing show up in the pp store for me to buy again like I never purchased them at all!
    What's going on?
    I'm missing a ton of apps!
    Pleae help me!
    Gaby

    I just wanted to add this information to my post:
    I have purchaed, free and paid, 618 apps.
    In my phone apps to add to my phone when I plug it in my computer only 266 apps show up.
    In my itunes "puerchased list" only 266 show up.
    Thank God I have not updated my ipad. There I went to my "purchased" under the ALL list in the app store and there I do see my 618 apps!
    Where did my other 352 apps go? Which many were paid.
    I want my apps back.
    Thanks,
    Gaby

  • Editing after exporting and importing onto different computer?

    Can you edit an iMovie ('09) after you export it and import it onto another computer?  It doesn't appear as if I can edit the themes and transitions and other features.
    Thanks.

    Yes, I did finally ascertain that workbooks are not included in the type of export I was trying. Thought I could do the quick and simple via GUI and not the command line. Because I did not have many reports to move, I simply saved them to the local machine and moved them to the designated server.
    I will try the command line you are referring to.
    Thanks for the confirmation.

  • Homepage lost my settings after upgrade and I want them back.

    I just upgraded to Firefox 4, the Mozilla Firefox Yahoo! Edition and most of my homepage content is lost. I had movies and a television guide and few other things that are just gone. Some things remained that I believe are AT&T/Yahoo defaults but I do not see a way to add content like I did before the upgrade. I also do not like the new toolbar and the home icon location. Used to be on the left and a specific color (red?) but now it's to the far right and almost black.

    I've encountered the same problem; I (reluctantly) upgraded Firefox after years of happily using version 2, and discovered that I should have, apparently, saved my bookmarks before updating.
    There is NO "places.sqlite" file anywhere on my hard drive.
    Following the procedure at https://support.mozilla.com/en-US/kb/Lost+Bookmarks#Restoring_bookmark_backups restores the bookmarks folder saved *today*. . . after Firefox reverted to a *two year old file* and saved it over my existing one. (How do I know it's two years old? It has house search information from before my toddler's birth, that's how.)
    There is no bookmarkbackups folder.
    Searches across my hard drive for the following files turn up nothing useful:
    * bookmarks.bak
    * bookmarks.html
    * bookmarks.html.moztmp
    * bookmarks-(date).html
    * bookmarks-(date).json
    Oh, there *is* a bookmarks.html file that's larger than the 7/2 one that's been created; it is, however, from a transfer from IE bookmarks dated 2006.
    None of the rest exit. Even searching for just the extension of .json turns up nothing.
    I really, really want my bookmarks back, and I am not thrilled about this; I trusted Firefox not to screw up on an upgrade, and that's the only reason I didn't make a backup before installing. Silly me.

  • Disabling JFileChooser's rename and create new folder options

    Thanx in advance.
    Can anybody guide me as to how to disable the following in JFileChooser :
    1. tool bar buttons where the user can create a new folder.
    2. Renaming a file
    regards,
    Vikas

    Ok, ok, here's the code. Again, don't use if you don't absolutely have to.
    Use at your own risk. This is just an example. No guarantees given. Etc, etc.
    import java.awt.*;
    import java.awt.event.*;
    import java.beans.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.plaf.basic.*;
    public class ReadOnlyFileChooser extends JFileChooser {
        BasicFileChooserUI ui;
        public ReadOnlyFileChooser(String path) {
         super(path);
         if (System.getProperty("java.version").startsWith("1.4") &&
             getUI() instanceof BasicFileChooserUI) {
             ui = (BasicFileChooserUI)getUI();
             // Disable "New Folder" button
             ui.getNewFolderAction().setEnabled(false);
             addPropertyChangeListener(new PropertyChangeListener() {
              public void propertyChange(PropertyChangeEvent ev) {
                  if (ev.getPropertyName() == JFileChooser.DIRECTORY_CHANGED_PROPERTY) {
                   SwingUtilities.invokeLater(new Runnable() {
                       public void run() {
                        ui.getNewFolderAction().setEnabled(false);
             String className = ui.getClass().getName();
             if (className.equals("javax.swing.plaf.metal.MetalFileChooserUI") ||
              className.equals("com.sun.java.swing.plaf.windows.WindowsFileChooserUI")) {
              // Disable editing (file renaming) in JList
              JList list = (JList)findByClass(this, JList.class);
              MouseListener[] listeners = list.getMouseListeners();
              for (int i = 0; i < listeners.length; i++) {
                  className = listeners.getClass().getName();
              if (className.endsWith("FileChooserUI$SingleClickListener")) {
                   list.removeMouseListener(listeners[i]);
                   break;
              // Disable editing (file renaming) in JTable
              JToggleButton detailsViewButton = findDetailsViewButton(this);
              detailsViewButton.addActionListener(new ActionListener() {
              boolean done = false;
              public void actionPerformed(ActionEvent ev) {
                   if (!done && ((JToggleButton)ev.getSource()).isSelected()) {
                   SwingUtilities.invokeLater(new Runnable() {
                        public void run() {
                        JTable table =
                             (JTable)findByClass(ReadOnlyFileChooser.this,
                                       JTable.class);
                        if (table != null) {
                             TableColumn column =
                             table.getColumnModel().getColumn(0);
                             column.setCellEditor(null);
                   done = true;
    private static Component findByClass(Component comp, Class cls) {
         if (cls.isInstance(comp)) {
         return comp;
         } else if (comp instanceof Container) {
         Component[] comps = ((Container)comp).getComponents();
         for (int i = 0; i < comps.length; i++) {
              Component c = findByClass(comps[i], cls);
              if (c != null) {
              return c;
         return null;
    private static JToggleButton findDetailsViewButton(Component comp) {
         Icon detailsViewIcon = UIManager.getIcon("FileChooser.detailsViewIcon");
         if (comp instanceof JToggleButton &&
         ((JToggleButton)comp).getIcon() == detailsViewIcon) {
         return (JToggleButton)comp;
         } else if (comp instanceof Container) {
         Component[] comps = ((Container)comp).getComponents();
         for (int i = 0; i < comps.length; i++) {
              JToggleButton button = findDetailsViewButton(comps[i]);
              if (button != null) {
              return button;
         return null;
    public static void main(String[] args) {
         new ReadOnlyFileChooser(null).showOpenDialog(null);
         System.exit(0);

  • After renaming and moving to my desktop an iMovie project, i can not open it. I moved it back to iMovie but still it is not working. I noticed that there is not an Event Folder for the project. Can someone help me?

    I renamed an iMovie project, then I moved it out of iMovie to my desktop. It did not work from there. Finally I managed to move it back to iMovie, but still does not work. I can't edit it, it does not even appear as an option. I found out that the Event Folder for this Project is gone. Is this the problem? Is there a way I can get it back? Can somenone help me?? Obviously after so many mistakes you can tell I am new on this. Any help will be appreciated it!!!!!

    OK Let's take a step back.
    If you imported video clips from a camcorder there would be an Events folder in the Movies/iMovie Events/ folder.
    You have the option as you import from a camcorder to send your Event to an external drive instead. In this case, it would be in the iMovie Events folder at the top level of the external drive.
    If your project has no video clips, but only photos, there may be no events folder, only links to iPhoto.
    Similarly, if your camera imported your video clips to iPhoto, and you used the iPhoto event in iMovie, then your clips are in iPhoto, and there is no separate iMovie event.

  • Missing Photos after rename and organize Rolls

    Hi. I had a bunch of Rolls in my iPhoto Library\Originals folder for each year. In many cases there was just 1 picture in a Roll and hundreds of rolls. So I renamed a few Rolls to more meaningful names and moved pictures around into these Rolls. Then I deleted the empty Roll. I thought I was doing a great job in reducing hundreds of Rolls down to a handful.
    Problem is, now when I open iPhoto, the thumbnail still seems to be there ( meaning I can see the pictures) but when I click on the picture I get the "Missing Photo Indicator", i.e. the gray box, instead of the actual picture. I even Emptied the Trash so I fear I have lost the photos.
    I thought I read somewhere about re-indexing iPhoto in cases like this. Is that correct. If so How?
    Otherwise, Please help me figure out how to get iPhoto to find my photos in their new / renamed Rolls.

    Brad
    You made these changes in the Finder, yes?
    It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss
    If you have made these changes in the finder, then I'm afraid that you'll either have to return things to the way they were or if you cannot then you'll need to create and populate a new library.
    To create and populate a new library:
    Note this will give you a working library with the same film rolls and pictures as before, however, you will lose your albums, keywords, books, calendars etc.
    Move the iPhoto Library Folder to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library Folder on your desktop and find the Originals folder. From the Originals folder drag the individual rolls to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library Folder on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Rolls in the iPhoto Window (View -> Film Rolls) correspond exactly with the Roll Folders in the Originals Folder in the iPhoto Library Folder. You can move photos between Rolls, you can rename rolls, edit them, create them, as long as you do it via the iPhoto Window. Check out the Info Pane (wee 'i', lower left) the name and date fields are editable. Edit a Roll Name using the Info Pane, the Roll Folder in iPhoto Library Folder/Originals will also have the new name.
    Regards
    TD

  • Lost Calendar data after update and hotsync

    Okay, I hope someone can help with this. I updated my Treo 650 at the Palm site tonight. And I'm gonna try to recall the exact order in which I did everything so that this is clear. (Also know that I Hotsync every night, without fail.) You should know that I work on a PC using Windows XP. After I downloaded the update and opened it, it instructed me to Hotsync. I did. The stuff in the update took a while, but it finally worked. There were a couple problems with this Hotsync though. First I got an error message that all of my original applications could not be re-uploaded because some of them were not Palm compatible. (Or some such.) Fine. I'd just go to wherever the file was and see if I could live without whatever was not uploaded. (I still haven't found the file, and I don't know HOW to find it.) Then I got a Hotsync error message that stuff had to be deleted so that the Hotsync of the updated software could be successful. No problem. I deleted some photos and Voila, it worked. New software installed. I first went to my Apps page on the Palm to see if the important Apps were still there. And they seemed to be. Then I noticed the calendar, which was showing TODAY'S date, and that looked fine too. Now this is where I get confused. SOMETHING moved me to Hotsync AGAIN. Not sure why I felt I had to, but I did. When THAT Hotsync was finished, my calendar was wiped clean. Now this is where I may have shot myself in the foot. (I read another post that seemed similar to mine and the person was told that it was fortunate that she did NOT Hotsync AFTER data disappeared. Then he went on to show the person how to reclaim her data, and his explanation went WAY "over my head".) So I Hotsynced again to see if any magic would get my calendar, and the 7-8 years of dates and info from my M103 days, back onto my Treo. It did not. My Treo has no calendar dates whatsoever. What's strange is that the address book is totally intact. Can someone talk me through a way, if there is one, to get my calendar dates and data back? And a way to back up all of this precious information should I ever get it back. And if you offer me directions, give them to me as if you were directing a really SLOW child.   
    Post relates to: Treo 650 (Unlocked GSM)
    Message Edited by kenmoo on 08-04-2008 09:31 PM

    Try doing a global search of your system.
    Right click Local disk (C) then select search and type in datebook.bak under "All or part of the file name" entry and hit on search. If their are some items found just look for the biggest file size of the datebook.bak and copy it then paste it to the desktop then do the import process again but it's gonna be on the desktop location that you are importing the file from.
    1st Open Palm Desktop Software then open your emptied calendar.
    2nd Click File then Import.
    3rd Locate the datebook.bak that you pasted on the desktop - once you're on the desktop you just type in the asterisk symbol * then press enter on your keyboard to show those hidden files then you shoudl be seeing a datebook.bak and some other icons and files on your desktop. I recon to just double click on the datebook.bak folder then that should import all your calendar data if it contains anything and if not then i gues this will be the last resort.
    You don't need to worry about the message that says something like "Not all imported datebook will be viewed on the current view because the default view is unfiled and if you do have some categorized data on the calendar.
    This will be the last resort.
    Post relates to: Treo 680 (Unlocked GSM)
    Message Edited by skirmish on 08-05-2008 10:58 PM

  • Photos not retaining edits after exporting and uploading to Pinterest.  Why?

    After I export my edited photos from Lightroom the edits will not show up on the photos when uploaded to certain websites...ie Pinterest, NatGeo photo sites. My photos look horrific,colors are muted and gross.  What's wrong???  They look fine on my laptop photo viewer and they look great in Lightroom.   They look fine on my wordpress blog too.  So frustrating. 

    wellslynch
    Welcome to the Apple Discussions.
    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 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

  • I lost my itunes after syncing and older iphone to my powermac g4.  Originally I had an older ipod nano that I would sync to the g4 and everything was fine. Lost itunes music even though preferences had been set in advance for not automatically syncing.

    My itunes library had been fine.  I had been using an older ipod nano to sync with my itunes library and had been doing manual syncs, with the preferences in itunes set for not allowing "ipods or iphones" to sync automatically.  I found out that apple had a program to replace the battery on this older ipod nano, so I sent it in.  It was great, they didn't have an exact replacement and sent me a later ipod nano.  However, this ipod nano is so new - I will have to get a newer computer with a later operating system to use it.
    So, I thought I'd use my old iphone to listen to my old playlists.  I thought the preferences were set for not automatically syncing iphone to itunes.
    I've had problems in the past with the syncs with this iphone and my computer because of the USB port (1.1).  I'm thinking this was the problem.
    The apple store did something to update the software on my iphone when it wasn't working one day. I think that when I tried to sync the iphone to the g4 cube via the old port (1.1) it basically wiped out everything on my itunes.  Whatever was my selected playlist for my iphone - that was the only music
    that remained on my computer and the iphone.  I only had about 20 songs purchased on my library, but alot of music that had been downloaded, I gave away those original cds.  I did have a back up on my external drive, but that thing died a few weeks ago from some random power outtages we had this fall.
    I'm not looking to purchase retrieval software or have some outside third party to retrieve it for me.  It's not that much music lost.  I just wanted confirmation that this is what happened: that my old iphone sync is what erased the music.

    The old iTunes library was lost with the old PC.  However, it all that music and content is still on your iPod there are many ways you can extract this content from the iPod and import it back into iTunes.
    Your iPod is designed to sync with only one iTunes library at a time.  It will recognize the iTunes library on the new PC as a new library.  If you sync the iPod with this new library, all content will be erased from the iPod and replaced with what is in the new library.  So what you will want to do is copy everything from the iPod to your new iTunes library on your PC first.
    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • I lost my music after backup and restore. can i get it back

    is it possible to get my music back after a backup and restore ? i lost all my music.

    Is all your music in iTunes on your computer? If so with your device plugged in make sure the sync music box is checked.

  • Lost MPEG-2 after archive and install

    I bought and used the MPEG-2 playback component but MPEG Streamclip no longer believes it is installed after a recent archive and install of Leopard.
    I still have my confirmation email of purchase, but there's no indication as to how to reinstall or repair MPEG-2.
    What do I need to do to restore Quicktime and especially MPEG-2?

    I'd recommend saving your (paid-for) QuickTimeMPEG2.dmg file on your local disk. This would go for any software you pay for and then download online, especially if it can be accidentally wiped out by an OS upgrade.

  • Lost calendar data after update and sync please help!!!

    Last night I updated iphone via itunes with latest upgrade....and during or after which information an on my calender has been removed...it only has reaccuring events....all other events are GONE!!
    Outlook is not set up on this computer as it is a work laptop and I didn't want to set up with home emails.
    I have read a few discussions and looked at the support info on apple, no luck...
    I have tried reseting sync history but that didn't recover the info.
    I NEED HELP PLEASE!! in the very basic of forms...
    Will i need to set up outlook?? Is that where all my info is???

    In iTunes your iPhone shows up in the left column. Right click your iPhone and chose "restore from backup". This will put your phone back to when you plugged it in to update.

  • Thunderbird: Email contents display as blank after renaming or deleting a folder

    After deleting or renaming an email folder we find that, on choosing another folder, all email is blank. That is the headers are displayed correctly but on clicking these to view the message body the lower panel is entirely blank. This applies to all subsequent folders selected.
    On closing and re-opening ThunderBird the folders and email display correctly again.
    We wound back to an earlier version and the problem does not exist. Have switched off updating.
    Does anyone have any ideas?
    Details:
    We have this problem with version 28.X to present, including Betas.
    No problem with version 24.X and earlier.
    imap using Dovecot 2.2.10 on Centos 7.0.1406
    Many thanks,
    Ewan Crawford

    Dear Matt,
    Very many thanks indeed for your quick reply. We have tried that, but no luck I'm afraid. Only closing and re-opening Thunderbird gets round this problem.
    I am aware that the page
    http://kb.mozillazine.org/Disappearing_mail
    advises closing and re-opening, but we'd like to avoid this if possible.
    Best wishes,
    Ewan

Maybe you are looking for

  • Broadcast Error while broadcasting a template

    hi... I am facing error while broadcasting a template as a PDF file. Error: com.sap.ip.bi.base.exception.BIBaseRuntimeException I cant find any other details for this error. I am able to broadcast the query.But i am not able to broadcast the template

  • Cursor fetch into

    I have a function, to which i pass a sql statement.In the function using the cursor i get the output of the sql statemnt into a output variable. This function works fine, but for one particular select statement it takes[u] over an hour to execute in

  • HR_INFOTYPE_OPERATION short dump

    Hi everyone, I get a short dump  When I use the HR infotype Opertaion on Infotype 105 then I call the update buffer in sapfp50. Here is the sample code             call function 'HR_INFOTYPE_OPERATION'               exporting                 infty   

  • I'm trying to update to the new OS X, and its saying I don't have enough space on my start up disc. What do I need to do?

    I'm trying to update to the new OS X, and its saying I don't have enough space on my start up disc. What do I need to do?

  • Looking for Forms 3 Download

    I'm trying to locate character based Forms 3.x & Reports 1.x to run on AIX Oracle 7.x database I have to have this version. Thanks