How to update folder content?

How do you get LR to recognize new files that are in the library's folders? For example if I open a raw file from LR, LR creates a PSD edit file, which I then edit in PS. There are now two files in the LR library folder, the original raw file that I imported and the new PSD edit file. While in PS, I decide that I need to also save a screen res jpeg version to email to an art director, so I resize and save the jpeg to the same folder. This file does not appear in the folder when viewing the folder in the LR library. I try right clicking on the folder and selecting check for missing folders and photos, but this does not make the file appear.
How do I get LR to automatically recognize new image files that have been added to the folder in its library? I haven't found anything in the preferences or menus that would appear to enable this capability. Surely I don't have to go through the re-import process just to get LR to see new files in the folder.

>"Then once the export is accomplished, LR does not automatically recognize that you have added a new file to the current folder. "
Think of LR as a black box that stores "master" images. "Export"ing means you want to produce a new file and send it *outside* the black box for some external purpose - email, printing, web, whatever. If, for some reason, you want to edit a master file in some way within LR and keep that version in the black box, then you should be creating a virtual copy (don't export it and then try to import it back into LR). Later, when you want to actually *do* something with that copy, then you export it - again for emailing, printing, etc. But that virtual copy is retained inside the black box. You can even use a stack to keep all the versions of a master image together.
The other objective for getting a file out of LR is to edit it in an external application like PS. For that, use the "edit in PS" or "edit in other application". This performs an export, but brings the edited image back into LR as a new master. And you can have it stacked with the original master.
However, what if you create some third image in PS from the one sent from LR? This gets us to the crux of the matter (what you ask in your original post). We can't simply assume that any file derived from PS is to be made part of LR. That's up to the user. However, it may be that case that it is the intent of the user to "reimport". So how do we do this?
The LR team apparently has decided that the user must import the new image. You are suggesting that another approach is for the user to simply store the new image in the same folder as the LR source and have it automatically imported, like a watched folder. That seems like a good approach. If this approach were taken, then Adobe would have to fix the situation where only one file of a given name (w/o extension) in a folder can be in the library.
I know iViewMedia Pro provides any number of watched folders, so it can be done. I wonder, given that the Adobe engineers switched from the "shoot" concept to folders between Beta 4 and version 1, they didn't have time to add a rich set of features regarding the use of folders. We can hope that they will improve the features as time goes on.
- Pierre

Similar Messages

  • How to update resource content (XML Versioning)

    Hi,
    How to update resource content in the resource_view?
    I am trying to use XML Versioning. And not able to update the resource content using PL/SQL. Upon executing update, sql prompt says 1 row updated, but when I extract the same resource, it returns previous values. Is this a bug?
    I tired the following statements:
    --Create Resource
    declare
    bret boolean;
    begin
    bret := dbms_xdb.createresource('/public/test.xml','<Test>Version 1</Test>');
    end;
    --Update Resource
    update resource_view
    set res = updatexml(res, '/Resource/Contents/Test/text()', 'Version 2') where any_path = '/public/test.xml';
    --Extract the resource
    select extract(res, 'Resource/Contents') from resource_view where any_path = '/public/test.xml';
    EXTRACT(RES,'RESOURCE/CONTENTS')
    <Contents xmlns="http://xmlns.oracle.com/xdb/XDBResource.xsd">
    <Test>Version 1</Test>
    </Contents>
    Any help appriciated.
    Thanks

    Hi,
    Update the whole 'Test' element itself with the new element and value.
    example:
    update resource_view
    set res = updatexml(res, '/Resource/Contents/*', '<Test>Version 2</Test>') where any_path = '/public/test.xml';
    Hope that helps.
    Savitha.

  • How to update xml content based on resource_view path?

    I am using resource db to store xml documents. I can ftp xml documents into a specific path within resource db. I have a xml schema registered and setup with a xml table. I would like to update a xml document based on a specific resource_view path.
    For example:
    /some/path/mydocument.xml
    I would like to upddate this document using the path "/some/path/mydocument.xml"
    How can this be done using SQL?

    Typically the best way is if you know the name of the default table that contains your document. You do the update on the default table as follows
    update yourTable  t
         set object_value = updateXML(...)
    where ref(t) = (
                     select extractValue(res,'/Resource/XMLRef')
                       from resource_view
                      where equals_path(res,'/some/path/mydocument.xml') = 1
                          )

  • Urgent ! How to Zip Folder Contents including files and sub folders.

    Hi, i need an urgent help from you regarding zipping the contents of any folder/directory including its sub folders and files to a .zip file. Please provide a code for ot or help me out. It is really very urgent.
    Thanx Waiting....

    This class can add a string or file to a ZIP. Maybe you can adapt it to do a directory and all its subfolders and files recursively:
    package demo;
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    import java.io.FileReader;
    import java.io.IOException;
    import java.util.zip.GZIPInputStream;
    import java.util.zip.GZIPOutputStream;
    import java.util.zip.ZipException;
    * Demo for using the Zip facilities to compress data
    public class ZipDemo
        /** Default buffer size */
        private static final int DEFAULT_BUFFER_SIZE = 4096;
         * Compress a string
         * @param uncompressed string
         * @return byte array containing compressed data
         * @throws IOException if the deflation fails
        public static final byte [] compress(final String uncompressed) throws IOException
            ByteArrayOutputStream baos  = new ByteArrayOutputStream();
            GZIPOutputStream zos        = new GZIPOutputStream(baos);
            byte [] uncompressedBytes   = uncompressed.getBytes();
            zos.write(uncompressedBytes, 0, uncompressedBytes.length);
            zos.close();
            return baos.toByteArray();
         * Uncompress a previously compressed string;
         * this method is the inverse of the compress method.
         * @param byte array containing compressed data
         * @return uncompressed string
         * @throws IOException if the inflation fails
        public static final String uncompress(final byte [] compressed) throws IOException
            String uncompressed = "";
            try
                ByteArrayInputStream bais   = new ByteArrayInputStream(compressed);
                GZIPInputStream zis         = new GZIPInputStream(bais);
                ByteArrayOutputStream baos  = new ByteArrayOutputStream();
                int numBytesRead            = 0;
                byte [] tempBytes           = new byte[DEFAULT_BUFFER_SIZE];
                while ((numBytesRead = zis.read(tempBytes, 0, tempBytes.length)) != -1)
                    baos.write(tempBytes, 0, numBytesRead);
                uncompressed = new String(baos.toByteArray());
            catch (ZipException e)
                e.printStackTrace(System.err);
            return uncompressed;
         * Uncompress a previously compressed string;
         * this method is the inverse of the compress method.
         * Implemented in terms of the byte array version.
         * @param string containing compressed data
         * @return uncompressed string
         * @throws IOException if the inflation fails
        public static final String uncompress(final String compressed) throws IOException
            return ZipDemo.uncompress(compressed.getBytes());
         * Main driver class for ZipDemo
         * @param command line arguments - either string or file name to compress
        public static void main(String [] args)
            try
                for (int i = 0; i < args.length; ++i)
                    String uncompressed = "";
                    File f              = new File(args);
    if (f.exists())
    BufferedReader br = new BufferedReader(new FileReader(f));
    String line = "";
    StringBuffer buffer = new StringBuffer();
    while ((line = br.readLine()) != null)
    buffer.append(line);
    br.close();
    uncompressed = buffer.toString();
    else
    uncompressed = args[i];
    System.out.println("length before compression: " + uncompressed.length());
    byte [] compressed = ZipDemo.compress(uncompressed);
    System.out.println("length after compression : " + compressed.length);
    String compressedAsString = new String(compressed);
    System.out.println("length of compressed str : " + compressedAsString.length());
    byte [] bytesFromCompressedAsString = compressedAsString.getBytes();
    boolean isTheSameAs = bytesFromCompressedAsString.equals(compressed);
    System.out.println("compressed bytes are " + (isTheSameAs ? "" : "not ") + "the same as from String");
    System.out.println("length of bytesFrom...: " + bytesFromCompressedAsString.length);
    String restored = ZipDemo.uncompress(compressed);
    System.out.println("length after decompress : " + restored.length());
    isTheSameAs = restored.equals(uncompressed);
    System.out.println("original is " + (isTheSameAs ? "" : "not ") + "the same as the restored");
    String restoredFromString = ZipDemo.uncompress(compressedAsString);
    isTheSameAs = restoredFromString.equals(uncompressed);
    System.out.println("original is " + (isTheSameAs ? "" : "not ") + "the same as the restored from string");
    catch (Exception e)
    e.printStackTrace(System.err);
    MOD

  • How to update Shape3D contents?

    My question is: After loading a object from a .obj file, if I didn't change the length (size) of the interesting vertexes, but I will change the vertexes' coordinates (say, float[] coords) with the corresponding textures (float[] cotexts ) over these coordinates, how can I do it directly from the following obtained " Shape3D object3d " ?
         TransformGroup createSceneTransformGroup( ) {
              TransformGroup m_BGFace = new BranchGroup();                             // create a BranchGroup
              m_BGFace.setCapability(BranchGroup.ALLOW_DETACH);
              m_BGFace = myScene.getSceneGroup();                                          // myScene is actually a Scene object loaded from a single ObjectFile
              Shape3D object3d = (Shape3D) m_BGFace.getChild(0);                      // obviously, object3D is the single child in current BranchGroup
              GeometryArray head = (GeometryArray)object3d.getGeometry();          // geometric data of the head
                 GeometryInfo gi = new GeometryInfo( head );                                     // GeometryInfo Actually, what I've got is a TriangleStripArray
              Point3f[] coords = gi.getCoordinates();                                               // Get the coordinates, triangle by triangle.
    ?????????????float[] coords +  float[] cotexts??????????????
    ????????????? What to do??????????????????????????????
              m_TGFace.addChild(m_BGFace);                                                 //  Add BranchGroup to TransformGroup
              return m_TGFace;                                                                            // return TransformGroup
         }Edited by: jiapei100 on Oct 4, 2008 1:37 PM
    Edited by: jiapei100 on Oct 4, 2008 1:49 PM

    what i want to do is, i read a file line by line and put it to the textPane, so when a user types a new line in the text pane i want to save the new line to the file
    please help
    regards

  • ADF Faces: Update Tree Contents

    Does anyone know how to update the contents of a Tree component.

    To be more specific, I want to be able to refresh the tree contents CRUD (Create, Read, Update, Delete) operations are performed on the tree nodes.
    Currently I provide a tree model by extending ChildPropertyTreeModel.
    On every CRUD operation I create a new model, but the tree does reflect the contents of the new model.
    How do can I make the tree refresh it's contents?

  • Apple loops for garageband pack doesn't show the folder content (loops, files...)  in ableton live suite 8 library browser, but I can see all the loops in the folder from finder. how can i fix this? help please.

    apple loops for garageband pack doesn't show the folder content (loops, files...)  in ableton live suite 8 library browser, but I can see all the loops in the folder from finder. how can i fix this? help please.

    Thanks Barney, I tried that but all that comes up in Spotlight are the log files that show the file paths! I don't know how Steam works. Are all the files held by Steam on their server perhaps?

  • When ever i click a picture in photo booth it does not automatically update its content is this a bug or i don't know how to do it?

    when ever i click a picture in photo booth it does not automatically update its content is this a bug or i don't know how to do it?
    whenever you click a picture in photobooth you have to manually insert it one by one in iphoto
    i want to know is there any other option in iphoto which can do this type of thing(adding pictures automatically to iphoto )
    so that i do not have to do it manually

    Once you take the photo with Photo Booth, select the photo in the tray at the bottom and click on the iPhoto button just abouve and to the left:
         Click to view full size
    That will import the photo into iPhoto automatically.  But PB does not import any and all photo taken into iPhoto automatically.  That choice is left to the user.
    OT

  • Can you delete the contents of the Updates folder?

    Hi,
    Trying to free up some space on my hard drive. Using OmniDiskDweeper app. Just wondering if it's safe to delete the contents of the Updates folder; the one located in the hard drive/library. There is about 5 GB of stuff in there.
    thanks,
    J

    Jaymo, I deleted the contents of my "Updates" folder on my MBPro2.2 without any ill-effects.

  • Been using Macs since classic. Using MBP, OS 10.7.5. Trying to figure out how to print/save folder contents (Name, Date Modified, Size Kind) of entire (non-visible) folder? Any apps that can do this?

    Been using Macs since before classic. Using MBP, OS 10.7.5. Trying to figure out how to print/save folder contents including what's not visible on screen (Name, Date Modified, Size Kind) in entire folder?
    Screen shots are getting old hat.
    Tried select all, copy, paste into pages, but it didn't display date modified, size & kind, and also included images of selected files, which is too large. 
    Any apps/shortcuts/utilities that can do this?  Thanks in advance.

    Hello Achates:
    I did not read the rather long post. If you wish to reinstall OS X 10.4, use your software install DVD. Backup is essential. To minimize your risk, I would use an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    In that way, you will have a fresh copy of OS X and your current settings will be preserved.
    Incidentally, I do not agree that the printer problem is best solved by reinstalling OS X. I have had HP printers for sometime and, on one occasion, had difficulty after an upgrade. HP technical support walked me through uninstalling all traces of the HP driver and then reinstalling.
    Barry

  • Folder content (Application, Utilities) disappear after Software Update

    Please help!
    Folder content of Application and Utilities disappeared! Applications still working through shortcuts and Dock.
    After performing another Software Update (iTunes 8.0, Security Update 2008-006 (PowerPC), Quicktime 7.5.5), a task that worked for many years on the same formated G5, the multiple errors listed in the log. Please note that I did this through Remote Desktop from a distant Mac.
    Can Disk Utility fix this? Looks like the Update did not finish well.
    Please help!

    Hi Phil, and a warm welcome to the forums!
    I think Francine's page will cure this, it just picked up the Hidden Bit, happens to Disks and/or folders...
    http://homepage.mac.com/francines/articles/invisible.html
    Or use this...
    show hidden files in OSX Finder
    Open the terminal and type or copy/paste:
    defaults write com.apple.finder AppleShowAllFiles -bool true
    Reverting to the default of NOT showing hidden files:
    defaults write com.apple.finder AppleShowAllFiles -bool false
    Restart or Force Quit Finder required to take effect.

  • HT201250 Hi, I had updated folder on my hard drive wich was wrongly replaced with a folder from my external drive. I m not using time machine. How can i recover that updated folder? (it was done on 3-5-12)

    Hi, I had updated folder on my hard drive wich was wrongly replaced with a folder from my external drive. I m not using time machine. How can i recover that updated folder? (it was done on 3-5-12)

    If the folder was replaced, it was written over.
    Nothing short of forensic data recovery (probably involving taking the drive apart to scan the discs seperately) is going to recover anything (if indeed even that will).

  • How do you email contents of favorites folder without having to copy and paste each item in the folder individually?

    how do you email contents of favorites folder without having to copy and paste each item in the folder individually?

    Zip (compress) the folder before you send it.

  • How do I find folder contents which were accidentally deleted?

    How do I find folder contents which were accidentally deleted?

    They would be in your Trash. Unless you have emptied your trash since then, in which case you'd need to use a file recovery tool such as Data Rescue.
    Of course, if you use Time Machine for backups, you can easily retrieve the file from TM.
    Matt

  • How can I update an iPad to IOS 7 when the .ipsw is already in the software updates folder?

    I have already upgraded one iPad to IOS7 from iTunes. The .ipsw file is still in my ~/Library/iTunes/iPad Software Updates folder. Why, when I attempt to upgrade a second iPad, does iTunes want to start downloading it yet again? It's already there. Brain damage in iTunes? I have to limit my download activity due to my ISP (can't get another one yet).
    Thanks!
        Gary

    Please ignore this discussion. Problem resolved.

Maybe you are looking for