Accidentally moved all photos out of separate folders into single folder!

So somehow I managed to move all of my photo files from my work out of their respective, nicely organized folders into one single folder. I really can't figure out how. All 15,588 of them... now unorganized into a single folder. "Undo" didn't work and I tried restoring from a catalog backup with no success. Also... my Time Machine backup refuses to restore because the disk is messed up, so that's useless. Lightroom still has all of the folders recognized in the catalog but the photos are missing, (?) and I do not want to just "re-link" them and point Lightroom to the photos in the new folder.
So I guess my question is, can I go to each folder in lightroom and physically move all the photos that were previously in that folder BACK into that folder on the system automagically? It seems that lightroom recognizes what folders used to exist there... just can't find them. Well, I know they are all in that one folder and would like Lightroom to move them all back to their appropriate folders. That way when I search for a folder on my computer (not in lightroom), the folder contains the photos that used to be there. I hope this makes sense. I am using Lightroom 4.1 on a Mac running OSX version 10.8.3. Thank you for any and all help.

Sorry IIIMPower, I just saw this post after responding to the other post.
IIIMPower wrote:
Rob, this sounds like it would work. I downloaded it and installed it and am having trouble editing the advanced settings... I have no idea what to put in the "FROM-PATH" area. Would this be "/Volumes/2TB HD/AUTO RESTORATION?" When I tried that, the plugin did nothing. Any tips on how to get this working?
If your best whack at a correct path failed, then I'll have to add a UI with browse button for ya.
But before I do that, please send me the (preferrably verbose) log file.
Instructions:
* Check the 'Verbose Logging' box in top section of plugin manager.
* Then click the 'Clear logs' button (same section), or reload plugin or restart Lightroom.
* Click the 'Relocate' button (bottom section of plugin manager).
(use test mode, not real mode)
That will produce a fresh set of verbose logs. To send them to me, click the 'Problem Report' button in the top section of plugin manager.
UPDATE:
The fromPath should be the flat folder, i.e. where the files will need to be moved from. The location where files will be moved to is: "where they belong", which is known - it's in the catalog.
So if "...Auto Restoration" folder is not the path to the flat folder (it's not, right?) it should not be in the fromPath.
if "...68 Oldsmobile 442" is the flat folder, then it should be in the fromPath (with '...' replaced by the correct path prefix).
*** Important: Relocation Services only relocates selected photos. Thus, you need to select which photos you want to restore before clicking the 'Relocate' button. The results of the relocation should be evident in Lightroom, but complete details are available in the log file. PS - the log file is not only useful for recording details of successful operation, but also may provide a clue if operation is not successful.
Rob
Message was UPDATED by: Rob Cole

Similar Messages

  • My storage is mostly full of a category labeled "other." I'm out of memory to the extent that it won't even allow me to update apps. I have moved all photos over to my computer and my music streams through the cloud. Any advice on how to fix this problem?

    My storage is mostly full of a category labeled "other." I'm out of memory to the extent that it won't even allow me to update apps. I have moved all photos over to my computer and my music streams through the cloud. Any advice on how to fix this problem?

    http://discussions.apple.com/thread/3418045?tstart=60

  • I accidentally moved all my iPhoto events onto one.  I have a recent backup.  How do I go about recovering my events?

    I accidentally moved all my iPhoto events onto one.  I have a recent backup.  How do I go about recovering my events?

    You could try Events -> Autosplit Selected Event
    And you always need a back up. Always.

  • I accidentally imported all media files on my iMac into iMovie.

    I accidentally imported all media files on my iMac into iMovie. Now I have over 10,000 "clips" in a single event library. It is massive and causing performance issues. Some are photos, some are movies, some are music/voice memos and many are stock computer icons/images. If I delete them from iMove (via move to trash) via select all, am I deleting them from iMovie or from my iMac?

    No problem!  Also, a quick bit of information.  If you did not already know this, when you empty the trash, it does not actually delete your files.  It just allows the space that those files were taking up to be overwritten.  That's why you can go to your Time Machine and recover these files.  So, your computer will not improve in the speed department that much after deletion.  I'm pretty sure there's a way to completely wipe files off of your computer, therefore actually regenerating space, however I do not know how to get through that process.  You may want to ask this in a new separate discussion.  Also, please respond to my reply (with a link) right after your add the conversation if you want to create the thread, because I'd like to know too, based on the fact that I cleared 259.82GB off of my computer within the last few months in one sitting.

  • A proposal - moving some things out of mx.rpc into mx.async?

    Hey guys,
    Just want to get your thoughts rather than jump in and filing a feature request. What do you think about moving a few things that aren't necessarily RPC out of mx.rpc and into a new package (for example mx.async) and removing some of the service-related assumptions? A couple of candidates for this in my mind would be:
    AsyncToken - I use this for all sorts of Async stuff, which is usually waiting on a service, but not always.
    IResponder - This is useful for things such as command chains, and listening in to user actions, and the like. I would also like to see IResponder.applyFault() and IResponder.applyResult() be taken out of mx_internal (and their parameters changed from event types to something else, perhaps Object for result, and Fault for fault).
    And the various impls of IResponder as well :)
    Just an idea that's been bouncing around my head, thought I'd throw it out there and see what you guys think - worth filing a feature request?
    -Josh
    "Therefore, send not to know For whom the bell tolls. It tolls for thee."
    http://flex.joshmcdonald.info/
    :: Josh 'G-Funk' McDonald
    :: 0437 221 380 ::
    [email protected]

    Nice, well while you're in there, any chance we can get FaultEvent from send() dispatching on next frame like a normal event (and on the AsyncToken as well as the WebServie)? I've got some *ugly* workaround code because the fault is dispatched (and handlers invoked) before send() returns, and you can't listen to invocation faults on the AsyncToken like normal events:
                //This code is to catch invocation problems, since Flash has decided to interrupt the flow of the VM for
                //FaultEvent rather than dispatch it on next frame from the token
                operation.addEventListener(FaultEvent.FAULT, invocationFaultHandler);
                //Send the request
                log.debug("Sending request...");
                token = operation.send();
                log.debug("...Send attempt completed");
                //Remove our invocation fault listener
                operation.removeEventListener(FaultEvent.FAULT, invocationFaultHandler);
                //Do we need to send this info on to the token's listeners in a frame or two?
                if (invocationFaultEvent) //Instance-level global
                    log.debug("There was an invoke error, which means the token listeners aren't notified. Will redispatch to them in 250ms");
                    //When we create the timer, we're using a hard listener reference because this helper instance may otherwise be collected before we're done!
                    //So make sure to remove the handler (and kill the timer) on firing!
                    timer = new Timer(250, 1);
                    timer.addEventListener(TimerEvent.TIMER, reDispatchInvocationFault);
                    timer.start();
                return token;
    Cheers,
    -Josh
    On Wed, Oct 1, 2008 at 10:49 AM, Matt Chotin
    <
    [email protected]> wrote:
    A new message was posted by Matt Chotin in
    Developers --
     A proposal - moving some things out of mx.rpc into mx.async?
    I'm not sure the changes are in Iresponder as much as in a new impl class, but we're looking at making the service classes accept an Iresponder as the last arg to send(...) (where we'd look at the last arg and if it's a responder pull it off).  This can make some of the declarative stuff that we're looking at a little easier.  So any APIs we do would just be to assist in the wiring up of all this stuff.
    Not sure when we'll have a writeup for it, a lot of it is do to features in the IDE and we're not sharing those yet :-)  But I'm hoping that I can get that team to provide a writeup in a few days.  Admittedly, the changes we're making are for RPC, not for independence from it, so we'd have to see if it makes sense to do both.
    Matt
    On 9/30/08 5:38 PM, "Josh McDonald" <
    [email protected]> wrote:
    A new message was posted by Josh McDonald in
    Developers --
     A proposal - moving some things out of mx.rpc into mx.async?
    Don't really care about the package name thing, mainly just about changing some of the things that make them less useful when you not actually using mx.rpc.*
    What can you tell us about the changes to IResponder coming in Gumbo? I know the UM extensions to Cairngorm use it for callbacks on generated events. I use it for the same purpose, and also as part of an implemtation of command chains, where each invocation takes a context and an IResponder, and it's up to the impl to call Result or Fault.
    -Josh
    On Wed, Oct 1, 2008 at 4:27 AM, Matt Chotin <
    [email protected]> wrote:
    A new message was posted by Matt Chotin in
    Developers --
     A proposal - moving some things out of mx.rpc into mx.async?
    So it probably would have been better if we had created mx.async or used utils for these before, but I don't know that repackaging is a great idea at this point since it will make migrating code forward harder.
    The applyFault/Result stuff may be reasonable, we're actually looking at some work in Iresponder as part of Flex 4 (more of another impl that we'll provide) so we can see as we do it.  Do other people use these classes and want these kinds of adjustments?
    Matt
    On 9/29/08 7:23 PM, "Josh McDonald" <
    [email protected]> wrote:
    A new discussion was started by Josh McDonald in
    Developers --
     A proposal - moving some things out of mx.rpc into mx.async?
    Hey guys,
    Just want to get your thoughts rather than jump in and filing a feature request. What do you think about moving a few things that aren't necessarily RPC out of mx.rpc and into a new package (for example mx.async) and removing some of the service-related assumptions? A couple of candidates for this in my mind would be:
     *   AsyncToken - I use this for all sorts of Async stuff, which is usually waiting on a service, but not always.
     *   IResponder - This is useful for things such as command chains, and listening in to user actions, and the like. I would also like to see IResponder.applyFault() and IResponder.applyResult() be taken out of mx_internal (and their parameters changed from event types to something else, perhaps Object for result, and Fault for fault).
     *   And the various impls of IResponder as well :)
    Just an idea that's been bouncing around my head, thought I'd throw it out there and see what you guys think - worth filing a feature request?
    -Josh
    View/reply at <
    http://www.adobeforums.com/webx?13@@.59b69e6f/0>
    Replies by email are OK.
    Use the unsubscribe form at <
    http://www.adobeforums.com/webx?280@@.59b69e6f!folder=.3c060fa3 <
    http://www.adobeforums.com/webx?280@@.59b69e6f%21folder=.3c060fa3> > to cancel your email subscription.
    View/reply at <
    http://www.adobeforums.com/webx?13@@.59b69e6f/2>
    Replies by email are OK.
    Use the unsubscribe form at <
    http://www.adobeforums.com/webx?280@@.59b69e6f!folder=.3c060fa3> to cancel your email subscription.
    "Therefore, send not to know For whom the bell tolls. It tolls for thee."
    http://flex.joshmcdonald.info/
    :: Josh 'G-Funk' McDonald
    :: 0437 221 380 ::
    [email protected]

  • Syncing iPad2 doesn't move all photos selected in iTunes from the PC folder.

    In iTunes 10.5 I select a folder where I heve the photos to be sync to iPad2 and I select all sub-folders. On iPad some folders appear completly empty and others with just some photos. The number of photos identified ion iTunes after selecting the folders is correct (9470) but it passes much less. I've already cleared the iPod cahe file so iTunes can recreate it but the problem remains. This was already occuring before ugrading to iOS5 but it seams now is worst. Does anyone have experienced this situation?

    From Germany with not perfect English:
    I had similar problem. Files that were not transferred had either no file-ending (.tif and .jpg-files without these endings are not synct) or a wrong ending (.pdf for example).
    And the Apple-Hotline told me, a next iPod-software-update would allow a better sorting photos on the iPod. (Actually you can not use folders in folders, and all Photoes are sorted by date; a little help may be a count-number at the beginning of the file-name: 01.... 02.... 03... This helps, however it is not a good work for so many photos as you have.)

  • How can I rename all the images in different folders into a same name ?

    I need to rename all the jpgs in my music folders into "cover.jpg" so my mp3 player will recognize them as album covers, I've tried to use Automator but couldn't find a proper way to do it.
    Could anybody give me a hint about this? BTW I've kept only one picture in a single folder.
    Thanks~~

    I haven't tested this so maybe make a small folder to test on. In Automater create the following workflow
    Ask for Finder Items
    Get Folder Contents (Repeat for each subfolder found)
    Filter Finder Items (set Kind is image)
    Rename Finder Items
    You may need to play with the last one a little but I think Name Single Item should do the trick. This does assume there is only one image file in each folder. I did something similar to change the case of a bunch of random files over multiple directories.

  • Moving all jar files from our applcation to applib folder on server

    Hi,
    In our project we have three web applications bundled into a EAR file,to reduce the upload size we had a plan of moving all the jar files from WEB-INF/lib to the applib folder in the standalone server, but after moving i tried to run the application I get the following error,can someone help on this?
    login: JspServlet: unable to dispatch to requested page: Exception:oracle.jsp.parse.JspParseException: /jsp
    /common/page1.jsp: Line # 5, <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>

    Hi,
    appears that it cannot find teh tag library. However, I think the right way of sharing libraries is to read into the topic of shared library support of the server you are working with
    Frank

  • Why does FF need to create 10,000 folders for the cache? How do I make it go back into single folder mode?

    Before it was x:\\Cache\"stuff"...Simple easy to find files if you need to.
    Now its..
    x:\\Cache\X\x1\"a little stuff"
    x:\\Cache\X\xA\"a little more stuff"
    x:\\Cache\X\x0\"a even more little stuff"
    x:\\Cache\X\x9\" crap... I'm lost now""
    What is the purpose for the extra folders? I want to be able to revert it back to single folder mode.

    You would need to revert to Firefox 3.6.23 to have the old cache setup.
    The multiple cache folder setup is to allow for a larger cache which works more efficiently that earlier versions worked.

  • I accidentally moved all my contacts to computer and out of iCloud. how do I put back?

    I thought I was saving a copy to my desktop and when it said replace I thought it meant replace the old copy on my desktop with the newer version and then the whole contacts are in a different look and I can't use it in various ways I used to be able to use it.  How do I put it back on cloud (if that's what I've done - take it off cloud)?  I don't understand the product list below.  It has a dot on ipad but I am talking about my desktop and there is no choice there for that.
    thank you

    Hello makarismos,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iCloud: Troubleshooting iCloud Contacts
    http://support.apple.com/kb/TS3998
    Best of luck,
    Mario

  • How do I get all photos OUT of iPhoto?

    I want to start over with iPhoto, Aperture, and various other programs, and thus I want to get all my photogrpahs out of iPhoto (and Aperture and Lightroom) to a "neutral corner, just a set of folders on the HD where they would be just the original photos without any additional organization or data. Is this possible, and if so, how?
    Thanks.

    Hi fbx:
    1. Do you want to take the originals? or the edited versions?
    2. If the edited versions, simply select all and drag them from the iPhoto window to the folder you want them in. You can do the entire library like this, or do it album by album.
    3. If the Originals: Select the pics and choose Photos -> Revert to Original. and repeat the above.
    4. Alternatively, you can go to home/Pictures/iPhoto Library/Originals and take the pics from there. However, THIS IS NOT RECOMMENDED as mucking about in the iPhoto Library will cause problems with iPhoto. I only mention it as you're talking about reverting to a 'green field' start.
    Regards
    TD

  • I have accidentally moved all of my files from the finder and want to get them back

    Hi, I tried to drag and drop all my files from the finder to my desktop but now i can't find any of them, please help

    Which files or file types are you referring to? What action did you perform exactly?

  • HT4236 Photos out of order, in the wrong folder

    After I sync folders of photos from my pc to my iPad (using iTunes), the photos are mixed up on the iPad, not only out of sequence within the  folders, but appearing in the incorrect folder altogether! How do Ifix this? Thank you.

    There is already a thread on this https://discussions.apple.com/thread/4024672?tstart=0

  • Moving in and out points of layers into a new comp

    I'm in a bind. I'm creating a complex moving split screen scene. First I chose in and out points for all my video clips (about thirty of them) in Premiere Pro, and made a rough plan of what it should look like. Then I Dynamic-Linked it to After Effects.
    I left that comp alone and then created a new comp to create moving layer solids for the split screen animation. (Colored rectangles flying around.) So far so good. The plan was then to drag and drop the video clips onto the layer solids (which all have masks) but when I drag it over, it ignores the in and out point.
    Is there a way to get it to recognize the in and out point? The in and out points are just fine in the Dynamic Link comp. (Again, that comp is just a very rough cut with no resizing or animation. I just did it to get the timing down.) Thanks.

    You have to copy the layers in your original comp to maintain the
    in and out points. The other option is to open the footage on the footage
    ppannel and see if in and out points show up there. If they do you can copy and paste from that panel.

  • How can i take photos out of my ipod into my new computer?

    in the photos folder is a file called photo database and a folder called thumbs inside of wich are only four files with the .ithmb extension but no photos... i know my photos are there because i can watch them on the ipod but i want to take them out to my new computer...

    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

Maybe you are looking for

  • Flash player installed in wrong folder?

    Ok I have this poker program that uses flash player to run, but the program cant seem to find flash play since in 64 bit windows it is installed in syswow64 file instead of sys32 file. Flash player works fine except with this one program. how can I p

  • FYI Notification in EIT Workflow Process

    Hello, I have created a EIT and added to Employee Self Service. Employee will use this EIT to store the Coaching Feedback.Now this feedback should go as FYI Notification to Manager , this should be just FYI and no approval is needed. I configured the

  • Suggest me any good books for OCA_DBA Preparation

    Hi Guys, I am planning to appear in OCA DBA Examination before March 2009. For the preparation purpose, I need some material like Books, model papers, any other important articles etc. Kindly share the material with me if anybody have it, It would be

  • Building Block of SAP SRM 5.0 or 4.0

    hi, can any one provide the link for building block of SRM 5.0 0r 4.0 kindly do me the favour regards subhash

  • Discovery Linux - The target address is unreachable

    SCOM 2012 R2. Linux - Oracle Linux Server release 6.3 I am using root. Error: WinRM cannot complete the operation. Verify that the specified computer name is valid, that the computer is accessible over the network, and that a firewall exception for t