LR 4.2 Incorrectly Names Moved Folders

I just got a new Mac laptop and set up LR 4.2.  When I drag/drop to move folders across disks, LR seems to be assigning the wrong system file path and loses track of the move.  First, let me describe the key components of my setup:
I store my recent photos on my laptop's HDD in ~/Pictures/Master Workspace
I archive photos onto a mounted linux file system at /Volumes/Photos/Master Archive
For simplicity, I'll refer to those as [work] and [arch].  I have a folder [work]/201210 Sabbatical Return that I want to move into [arch]/2010s/2012/.  Before the new laptop, I could drag this over without issue and the folder and photos would copy into the file system on the Linux box as expected.  However, if I do this now I get [arch]/2010s/master workspace/201210 Sabbatical Return in my Linux file system with the photos, which is clearly not the correct destination.  For some reason LR seems to be substituting in "master workspace" where it should have "2012".  In my LR folder hierarchy, I see the new folder in the correct place with the thumbnails, but they all have the ? indicating the files they reference are missing.  If I manually move the files to the correct folder, all is well.
This is a repeatable error for any arbitrary folder.  It's very odd.  Can anyone offer an explanation, or is this just a bug?

Hi Cornelia-I,
Did I understand correctly that you drag from within LR?
That's correct: the folder dragging/dropping is all within LR, i.e., no direct interaction with the file system.
Your set-up sounds more complicated due to the Linux box as [arch], which could introduce another problem than on pure Mac-formatted storage space.
Yeah, but the complexity should be beyond the scope of LR.  As a Mac OS X mounted Apple Filing Protocol (AFP) volume, the Linux server should behave no differently than any other volume from LR's point of view, i.e., LR should have no idea that it's a Linux box on the other end. 
Also, this volume worked with my older laptop and LR.  There have been no changes to the Linux system.  The only new variable is the fresh LR install.
Thanks for the link. 

Similar Messages

  • Problem with missing files after moving folders around

    Hi,
    I keep my music files manually organized. This is mostly because I have a LOT of music and I don't want to take up all the space on my MBP HD. So my music is split up between 2 external drives and the MBP drive.
    I was moving around some folders since I wanted to reorganize my music folders, and iTunes can't seem to find the files anymore, and in order to fix it I see I need to find each and every file I moved (which is really not practical).
    I tried editing the "iTunes Music Library.xml" file, but it seems to get rebuilt from some other place where this information is stored.
    I also tried putting aliases in the old folders' locations pointing to the new ones (iTunes kept saying the files are missing)
    Is there any way to simplify the process of moving folders?? This is really strange that such a feature is missing.
    Thanks
    Yaron

    If you have the 'keep' option enabled and let iTunes do the work - take a sound track album as an example - that has various artists and you didn't tell iTunes that the album was a compilation album - then iTunes will put all the tunes into into the iTunes Music folder as Artist>Album>Song - if you have the compilation option enabled for the tunes on that same album - iTunes will nest it as iTunes Music>Compilation>Album>Song. This helps reduce the clutter in the iTunes Music folder with a thousand artists and only one tune for that artist.
    With the 'keep' option selected iTunes will move tunes automatically within the iTunes Music folder. Since iTunes moved the files it can keep track of the links.
    To create a second library launch iTunes with the 'option' key down and follow the dialog box instructions. I have a 'Master iTunes Library' on my internal HD and several ext HD's with other libraries which I give unique names i.e.: Really Big Music. I give the library data base file its' own unique name so I don't accidentally erase the wrong file. I also keep all the files that you would normally see for an iTunes library on the ext HD (iTunes library. .xml, art work etc.,). If you are into lots of movies and TV Shows you could create a library on and ext HD with only video content and name it accordingly. You would keep all the files for that library including the library 'management' files on the ext HD in the same nesting as you would find on your internal HD.
    This strategy works for me. I tried to manage the files by myself at one point and just had to many problems so I decided to not fight City Hall and go with the flow and it works for me.
    MJ

  • Moving folders.  Please help me with my script!

    Pretty much I'm making a script that facilitates moving files into other files that are in other files and so on.  First of all, I ask how many folders are within that folder. Example: Folder 1:Folder 2: Folder 3: Final Destination of Folder that wants to be moved.  Then depending on the amount of folders that are within eachother, I will ask them the name of each folder so I know the file path to the destination of the folder that wants to be moved.  I will then move the chosen folder to its destination.  This is my script so far:
    set theAmount to the text returned of (display dialog "Is there a folder within that folder, if so how many folders are there?" default answer "")
    if theAmount is 1 then set theName1 to the text returned of (display dialog "What is the name of the folder you want to move?" default answer "")
    if theAmount is 1 then set theDestination1 to the text returned of (display dialog "What is the name of the folder you want to move it to?" default answer "")
    if theAmount is 1 then tell application "Finder"
      move folder theName1 to folder theDestination1
    end tell
    if theAmount is 2 then set theName1 to the text returned of (display dialog "What is the name of the folder you want to move?" default answer "")
    if theAmount is 2 then set theDestination1 to the text returned of (display dialog "What is the name of the folder that contains the folder that you want to move to?" default answer "")
    if theAmount is 2 then set theDestination2 to the text returned of (display dialog "What is the name of the folder that is the final destination?" default answer "")
    if theAmount is 2 then tell application "Finder"
      move folder theName1 to (folder theDestination1) + ":" + theDestination2
    end tell
    Problem 1: It asks me the first question then nothing happens.
    Problem 2: I would like to make it so that I don't have to keep repeating "if theAmount is X then ask him the name of the folder it's in X amount of times."
    I appreciate any help, thanks!

    Without seeing your original source setup, it's hard to know quite how to set this up, but...
    Why are you asking the user these questions at all? Let me explain...
    Given a designated folder:
    set theFolder to (choose folder)
    You can find out yourself how many folders there are within it:
    tell application "Finder"
              set theAmount to count folders of folder theFolder
    end tell
    So, for one, you don't need to ask the user how many folders there are - you already know (although you can still ask if you want).
    More importantly, though, you don't have to rely on the user knowing the folder names (and typing them correctly). Give the user the ability to choose from a list:
    tell application "Finder"
              set folder_list to name of folders of folder theFolder
              set theAmount to count folder_list
              set theName to choose from list folder_list with prompt "Which folder do you want to move?"
              set theDestination to choose from list folder_list with prompt "Where do you want to move it?"
    end tell
    Finally your move statement isn't going to work.
      move folder theName1 to folder theDestination1
    In your original code, the user is likely (I assume) to enter the folder names (e.g. "Foo" and "Bar") which will translate into:
      move folder "Foo" to folder "Bar"
    The Finder is going to choke on this - it can't find folder "Foo" (or "Bar") since there isn't enough data there - these strings are not paths, they're just names of folders - and if you're expecting the user to type full paths each time... well, good luck
    The Finder is going to want proper paths to the folders in order to make the moves. You can do this by appending the folder names to the original folder object, e.g.:
      move (folder theName of theFolder) to (folder theDestination of theFolder)
    Although now you're moving a folder out of the source directory, and there's nothing to stop the user from re-selecting the same folder name next time around. You can get around that with a loop but, again, not knowing your ultimate goal here, it's not easy to be precise.

  • Ow do I resolve an incorrect name or password error?

    Salut!
    I have two comps. All were connected to FirefoxSync. After last update to v.19, the second computer stoped sync - incorrect name or password error.
    I have set new password on the main computer and copyed recovery Key.
    Then I have done the next on my second computer:
    At the top of the Firefox window, click the Tools menu and select Set Up Sync. The Firefox Sync Setup window will open.
    Click I Have an Account.
    Since you're not near the device with Sync already set up, click the I don't have the device with me link.
    Sign in to your Sync account:
    Enter your account email address
    Enter your password
    Enter your Recovery Key
    Then click Next
    All the time I have error - incorrect name or password error?
    What should I do else?

    Check out this
    *https://account.services.mozilla.com/forgot
    Use the option to request a password reset
    * https://services.mozilla.com/
    *https://support.mozilla.org/en-US/kb/ive-lost-my-firefox-sync-account-information
    *https://support.mozilla.org/en-US/kb/how-do-i-manage-my-firefox-sync-account
    *https://support.mozilla.org/en-US/kb/firefox-sync-troubleshooting-and-tips

  • Can't name new folders or rename existing folders in Finder

    I can't name new folders or rename existing folders in Finder. I've never had this happen before. I tried both using the new folder icon and choosing "new folder" from the actions icon. The only unusual thing I'm doing now is working with Spaces enabled, but I can't imagine that this has anything to do with the problem. Selecting and hitting "return" doesn't allow me to either erase existing text or overwrite with new text. Any ideas?
    Thanks.
    Sue A.

    Same here --
    I just created a new folder and couldn't change its name. Finder would give me "more info" (permissions certainly not an issue) and allow me to delete (and then recreate) the folder, but not change its name.
    Problem came from out of the blue, on a one-week-old system with all OS updates. Also found this old thread, which also suggests a Finder restart: http://discussions.apple.com/thread.jspa?messageID=8989639
    So that'll probably do it, but what gives?
    Not so impressed with 10.5.7 so far... first a complete system crash while doing no more than downloading updates (a few hours after booting up for the first time), then networking stopped working (see http://discussions.apple.com/thread.jspa?threadID=2003868), now this...

  • Moving folders in Lightroom - lost all my pictures!

    Hi,
    I'm hoping someone can help me recover my files, although something tells me they are gone for good.
    I keep my lightroom catalog and files in my external hard drive, but my HD is old and it was getting full, so I bought a new one to split my work and personal files.
    I started by moving my work lightroom catalog, which went fine. Next step was to move my work folders from the old HD to the new HD. I thought the best way to do this was through lightroom, so as to avoid the 'missing file' problem. I have my folders organised by year, so I started with my 2012 folder, containing thousands of pictures from that year. I simply dragged the 2012 folder from the old HD to the new HD and waited (a very long time) for the move to finish.
    When it finished, it came up with an error message saying some files couldn't be moved, and listed the files that couldn't be moved. It seemed like a lot of files, and they were grouped as 1-100, 101-200, 201-300, etc. So I clicked on the 2012 folder and all the sub-folders were there, named correctly, but they were empty. I then went to Finder on my Macbook to look for the files and the 2012 sub-folders were empty!
    The 2012 folder and its sub-folders are present on both the old and the new HDs, but all my pictures are gone from both HDs.
    I have no idea how this happened and what I can do to fix this. How can Lightroom delete my pictures when all I was doing was moving them to a new HD? And why did it move the folders and sub-folders correctly, but the pictures are gone? Any help will be much appreciated!
    All I know is I'm NEVER moving folders inside Lightroom again!
    Thanks!

    Hello,
    did you look in the trashcan? LR normally move images to the trashcan.
    You can try some recovery program and try to rescue some images. I like PhotoRec but there may better (comercial) programs. After recovery you may try to relink the lightroom catalog to the files in your filesystem. I wrote an article in my blog how to do so in my blog for an other forum post. May be this may help you to loose not all of you images (in case you do not have a backup - but we all have ).

  • Can't change names of folders or drives on desktop

    All of a sudden my powers to change names of files and folders on desktop has been taken away from me, I'm stuck with untitled folder 1,2,etc..
    Please help
    Thanks,
    Aaron

    Hi Rugger,
    Sounds like a permissions thing. Try using Disk Utility. It's here:
    Applications/Utilities.
    Launch DU, select MacintoshHD in the panel on the left, then click
    Repair Disk Permissions. When it's finished, Quit Disk Utility.
    Reboot and see if that makes a difference.
    And some tips about naming or renaming folders ... etc.
    Changing the names of items
    You can easily change the name of a file, folder, or disk on your computer.
    IMPORTANT: To avoid problems using Mac OS X or applications on your computer, don't move or change the names of folders that came with your system (such as the Library folder or your home). You should also not change the names of applications or items associated with specific applications. If you accidentally change the name of an installed item and you experience problems, you can change the name back.
    Locate the item you want to rename on your desktop or in a Finder window.
    Click the item to select it, then click the name. The name is highlighted and you will be able to edit it.
    Type the new name and press Return.
    Some document names have a file extension, such as ".txt" or ".jpg." If you change the name of a file and delete the extension, some applications may no longer recognize the file. To ensure the file can be recognized by the application that created it, change only the part of the name that comes before the extension, or open the file using the appropriate application, then save the file with a new name.
    You cannot change the name of an item in the Finder window's sidebar. You must locate the item on your desktop or in a Finder window to highlight and change the name.
    Carolyn

  • Randomly can't name new folders

    About once a month or so, the finder randomly stops allowing me to name any new folder I create. The folder name will be selected, but nothing happens when I try to type in a new name, and it just stays 'untitled,' even if I click off of it and reselect it. I can only rename it if I go under Get Info. The only thing that seems to fix this problem is restarting my machine. This time around the problem progressed-- first I couldn't name any folders and now all of a sudden I can't open Get Info w/ the keyboard command. I can only open it by going to the menu. Any ideas what is causing this wackiness??
    Thanks

    Same here --
    I just created a new folder and couldn't change its name. Finder would give me "more info" (permissions certainly not an issue) and allow me to delete (and then recreate) the folder, but not change its name.
    Problem came from out of the blue, on a one-week-old system with all OS updates. Also found this old thread, which also suggests a Finder restart: http://discussions.apple.com/thread.jspa?messageID=8989639
    So that'll probably do it, but what gives?
    Not so impressed with 10.5.7 so far... first a complete system crash while doing no more than downloading updates (a few hours after booting up for the first time), then networking stopped working (see http://discussions.apple.com/thread.jspa?threadID=2003868), now this...

  • Mail:Automatically complete addresses: Incorrect name keeps coming up....

    I realize that Mai+ uses the "previous" recipients list and the address book (and LDAP, if configured), but shouldn't it "learn" and suggest the moat used. How can I make Mail suggest the most used and correct name/email (mine!)?
    I have removed all the emails from the "previous" recipients list and emailed myself several times, only to continue to have the incorrect names/emails pop up. Any ideas?
    Mail version: Version 3.5 (930.3)
    Mac version: 10,5,6

    Thank you.....to be more precise....the id and password assigned to itunes is correct and works..but....when I hit 'update all' and get the small inset screen to sign iin....it is asking for a password to a different email address. I need it to use the icloud address I always use to puchase from itunes. I don\t know where it found this new email address?

  • How does iPhoto v. 8 name the folders inside iPhoto Library?

    iPhoto used to name the folders (holding original photos) the same as the event name. Now it seems to use the date of the photo, but does not change the folder name to the event name. Is this the case with the newer version?
    thx

    Yes. iPhoto 09 no longer has a strict correlation between the Events in the iPhoto Window and the Events in the Originals Folder. However, it doesn't matter as you never access the Orignals folder anyway. If you want to create a folder of your Events simply select and event and export it: File -> Export.
    Regards
    TD

  • Why does our Final Cut Pro Batch Exports incorrectly name sequence files?

    Why does our Final Cut Pro 7.0.1 Batch Exports incorrectly name sequence files?
    For example I can Batch Export 10 sequences one of which is called:
    "899-006TL013 It's Not Your Fault 800-509-2875"
    Then the output for some of the files are along the lines of:
    "899-006TL013 It's No#61386E.mov"
    I have seen this happen with 1-6 files or not at all... is it just dumb luck?
    What is going on here and is there any way to avoid or remedy this issue?
    We first thought having the render destination window open caused it but that was not the source.
    Any ideas?

    I've run into the same problem with FCP 7.0.2 when exporting from the sequence using File --> Export --> QuickTime Movie. I exported a file today called "BSP - 01 - How You Can Be Sure You Are A Christian" and it came out as this "BSP - 01 - How You Can#1630". This is getting to be annoying. I also need to name these files the length they are. I'm hoping someone may see this and have a suggestion (besides shortening the file name). It seems like I've also seen this on shorter file names, but at the moment I can't prove it.

  • Can I re-name bookmark folders and if so how?

    How can I re-name bookmark folders?

    Right click the folder in the sidebar and open the Properties to change the name.<br />
    In the Bookmarks Manager (Bookmarks > Organize Bookmarks) you can change the name in the Details at the bottom right.
    * https://support.mozilla.com/kb/how-do-i-use-bookmarks

  • Im having problems with contacts on my iPad. One of my contacts names shows up when I choose any one of 36 contacts. the email goes to the correct email address that I've chosen but the incorrect name shows up in the To: area of the email

    I'm having problems with contacts on my iPad. One of my contacts names shows up when I choose any one of 36 contacts. the email goes to the correct email address that I've chosen but the incorrect name shows up in the To: area of the email. Has anyone else experienced this...if so I hope there is a fix

    Hello there erika274,
    It sounds like no matter what contact you put into the 'To' field, a different name appears, but the email makes it to the intended recipient. I would recommend a few things here. First, close all the open apps on the device:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    When you have done that restart the phone:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    If the issue persists, I would next backup your device to iTunes, and restore it:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Moving folders and albumns

    help! I am very frustrated I am trying to organize my imported photos. I organize by months from january to december each year. I had the folders all in order, then something happened, a few of the months are at the bottom, when i try to drag them up, it won't let me drop them where I want to. is there a little trick I need to know. thanks for your help. also what is the difference between a folder and an album and is one better than the other

    Scrap Happy
    Welcome to the Apple user discussion forums
    what is the difference between a folder and an album and is one better than the other
    They are different and you may need both. Assuming that you are working totally in iPhoto (NEVER touch the iPhoto folders using the finder or you will corrupt your database) Folders hold albums and albums hold aliases to photos that are kept in events.
    I find that I can not reposition folders - only albums. The trick would be to name the folders so that the alpha sort matches the order you want (like for dates - 2008-01 -- 2008-02 etc)
    LN

  • Glitch when moving folders on my desktop

    When moving folders around on my desktop, there are some positions on the grid that act "glitchy". When trying to drop a folder in some places, it will revert the folder back to its original position on the desktop or will push it to another position on the desktop. It's as if there is a hidden file on the position I want to move the folder to when there isn't. What's going on?

    1. Control (right) click on your desktop and open desktop settings.
    2. Check to make sure that the Icon size is set somewhat lower than the Grid spacing.

Maybe you are looking for