Mirror Library Catalog "directory"  from Explorer Directory when importing

I have a Folder on Windows Explorer named "Quick pile for Lightroom" (QPL). It is the singular folder my Lightroom Library accesses.  When I place files into QPL I sort them into separate subfolders, e.g. Landscape, Ice and Cold... When I import them into Lightroom, Lightroom is checked to "include subfolders" so all of my new files are included. But, I have to re-sort them,  after they are imported, into my subfolders in my Lightroom Library catalog, which is set up EXACTLY as the same tree as QPL.
(and here is my question) is it possible to get them to import into the existing Lightroom Library Catalog structure without re-sorting them?

Generally all you need to do is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
tt2

Similar Messages

  • I have iphoto 6.  How do I only selecy certain photos from my camera when importing rather than all of them as show in the import page that loads

    I have iphoto 6.  How do I only selecy certain photos from my camera when importing rather than all of them as show in the import page that loads

    You use Image Capture (in your Applications Folder) for that job - or upgrade to a later iPhoto.
    Regards
    TD

  • Automatic directory creation and renaming when importing pictures

    Hello,
    I was wondering if what I'm trying to do is possible with iPhoto or anything in Leopard.
    When I import pictures, I want to create folders and rename the pictures based on the date. For an example, when I import pictures taken on November 10th, 2007, I want to create folder "2007", then under that folder create "11", then create "20071110", then rename the photos in "20071110_001.jpg" format.
    Is it possible?
    Thanks.

    No, actually I did all your posts all the way to the end. How can you tell? because I answered this question
    The goal.
    When importing the pictures through my Mac Mini, copy new pictures in the Samba server using the same structure, NOT in my LOCAL Mac Mini.
    in my very first reply to you. I did this when I said:
    No.
    Was there some part of that that was confusing?
    iPhoto will not do this, and, frankly, I know of nothing that will on the Mac. If you're confident with AppleScript you may be able to whip up a Folder Action to do it where you:
    1. Download the pics to a folder in the Finder. Have the attached script read the exif data, rename the files, and then create the required folders on the Samba server and copy the files over. But I have to say that I don't know if you can get a Finder Script to read exif data. I certainly could find nothing in the library. Nor is there anything in the Automator library that I can see. You might like to post on the AppleScript forum:
    http://discussions.apple.com/forum.jspa?forumID=724
    where some of the folks over there might be able to help.
    2. Then have an attached script that will automatically import the files into iPhoto. This is relatively straightforward with either Automator or Hazel.
    Regards
    TD

  • I want to import Favorites from Explorer but the Import button on the Firefox " File" menu is greyed out. What to Do?

    I want to import my Favorites from Internet Explorer but when I click on "File" on Firefox, the "Import" selection is greyed out and it will not give me the Import choice.
    How do I import my Favorites?

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.com/kb/Private+Browsing
    *You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    *To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Deselect: [ ] "Permanent Private Browsing mode"
    ----

  • Reading files and directory from a directory

    ublic static void readFromDirectory(String dirName) {
              // stop word ArrayLists
              ArabicStop();
              EnglishStop();
              FrenchStop();
              SpanishStop();
              DutchStop();
              File dir = new File(dirName);
              if (dir.isDirectory()) {
                   String[] child = dir.list();
                   System.out.println("hi Iam here");
                   for (int i = 0; i < child.length; i++) {
                        readFromDirectory(child.toString());
              File[] files = dir.listFiles();
              if (files == null) {
                   System.out.println("There are no files in this Directory ");
              } else {
                   for (int j = 0; j < files.length; j++) {
                        String filename = files[j].toString();
                        readFile(filename);
                   if (dirName.equalsIgnoreCase("English")
                             || dirName.equalsIgnoreCase("Nonenglish")) {
                        for (int i = 0; i < a2.size(); i++) {
                             keyWord = a2.get(i).toString();
                             //System.out.println("===" + keyWord + "===" + "KeyWord");
                             for (int a = 0; a < text.size(); a++) {
                                  String t1 = text.get(a).toString();
                                  if (keyWord.equalsIgnoreCase(t1)) {
                                       count++;
                                       //System.out.println("Found at:" + files[j] + " file");
                             keyWCount = count;
                             m1.put(keyWord, keyWCount);
                             //System.out.println(m1.get(keyWord));
                             count = 0;
                   } else if (dirName.equalsIgnoreCase("Spanish")) {
                        for (int i = 0; i < a5.size(); i++) {
                             keyWord = a5.get(i).toString();
                             //System.out.println("===" + keyWord + "===" + "KeyWord");
                             for (int a = 0; a < text.size(); a++) {
                                  String t1 = text.get(a).toString();
                                  if (keyWord.equalsIgnoreCase(t1)) {
                                       count++;
                                       //System.out.println("Found at:" + files[j] + " file");
                             keyWCount = count;
                             m1.put(keyWord, keyWCount);
                             //System.out.println(m1.get(keyWord));
                             count = 0;
                        //System.out.println(m1);
                   } else if (dirName.equalsIgnoreCase("French")) {
                        for (int i = 0; i < a3.size(); i++) {
                             keyWord = a3.get(i).toString();
                             //System.out.println("===" + keyWord + "===" + "KeyWord");
                             for (int a = 0; a < text.size(); a++) {
                                  String t1 = text.get(a).toString();
                                  if (keyWord.equalsIgnoreCase(t1)) {
                                       count++;
                                       //System.out.println("Found at:" + files[j] + " file");
                             keyWCount = count;
                             m1.put(keyWord, keyWCount);
                             //System.out.println(m1.get(keyWord));
                             count = 0;
         public static void main(String[] args) {
              int countText = 0;
              int c;
              test t1 = new test();
              System.out.println("IN NON - ENGLISH DOCUMENTS - P :");
              t1.readFromDirectory("NonEnglish");
              for (int j = 0; j < text.size(); j++) {
                   if (!text.get(j).toString().equalsIgnoreCase("")) {
                        countText++;
              c = countText;
              //System.out.println(c);
              //System.out.println(text.size());
              for (int i = 0; i < a2.size(); i++) {
                   String word = a2.get(i).toString();
                   String m = (m1.get(word)).toString();
                   double x = Double.parseDouble(m);
                   System.out.println(word + ":" + (x / c) * 100 + " %");
    I wanna read text files from directory that contain - lots of other directorys... and by using this code I have error,,,
    Can anyone help me plzzz
    Edited by: Shamma on Oct 9, 2008 3:32 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    You actually have more than 1 problem: you cannot traverse directories recursively and you get a NullPointerException.
    For the first problem you might want to verify what this statement returns:
    child.toString() (I honestly don't understand why you are calling toString() on a String object, but that's not the real problem!)
    You probably expect it to be a full absolute path.
    The NullPointerException has already been pointed out by masijade.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How do I stop iPhoto 11 from making duplicates when importing whole library from an older MAC?

    I just bought a Mac Mini, and i tried to import the iphoto library from my PowerMac G5 (iPhoto 6).    It duplicates many of the photos so that there more than twice as many photos in the new machine.  I was looking at the photos and some of the duplicates are just resized photos.  I guess older versions of photos.
    Is there a way to just import the latest versions of photos?
    Thanks,
    Tony

    No it's not a good idea.
    Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things, deleting them or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    Don't use copy and paste, try drag and drop.
    If that still fails then rebuild the Library to the new location:
    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, 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.  

  • Trying to import favorites from Explorer. When i go to the file menu in firefox, import is grayed out and I can't import the favorites

    I am trying to import my Explorer favorites. When I go to the "file" menu, "import" is grayed out and I cannot use it to get to the next step.

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.com/kb/Private+Browsing
    You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    *Deselect: [ ] "Always use private browsing mode"

  • Event library 1 hour limit on video when imported videos are longer

    In my event library, none of my events are more than 1 hour in length, and the video after the 1 hour mark is unavailable. When I import the event it says "87 minutes imported" or however long the clip is, yet only the first hour can be viewed, added to project etc. They are not all exactly 1 hour, some are 58 or 59 minutes, and the longest is 1:00:54 long. It is frustrating because I'm trying to import football games to make highlights, so I'm missing a lot of matches. Why is this happening/how can I access the footage in each event after the 1 hour mark? Please help me!

    Rodrigo,
    We seem to be able to "stream" (progressively download) videos over 35 minutes on PCs, but not on Macs. Without more input from Apple, we don't really have any clue as to what is responsible for this problem. We had considered breaking the files into several parts to take advantage of the streaming capability, but we have decided to just have our students download the entire files if need be, since the only users affected are Mac users.
    I'm just now testing to see if there is a duration limit on streaming files over the PC. After a little playing around, I think there might be a limit to the PC's streaming capabilities as well. I'll update this thread with any discoveries.
    But from what I can see, you should be able to stream files over the PC. How much bandwidth does your school have?

  • Is there any way to prevent fields from being overwritten when importing data via xdp-file?

    In an pdf-form designed with LCD everytime the form gets merged with an xdp-datafile content of all fields get overwritten, regardless which data-binding (normal, global, none) is assigned to the fields and regardless if the fields are exluded in the xdp-datafile. Is this normal behavior and is there any way to prevent fields from being overwritten?

    The xdp-file is first exported from Acrobat Professional 8 (export data as *.xdp) to get the complete structure. Then in the xdp-file some fields are removed manually and other fields are filled with data. When the modified xdp-file is opened again with Acrobat Professional 8 it grabs the original pdf-form and merges the manually filled fields into the form. With the merge all other fields in the form are overwritten, even if they are not defined in the xdp-file. And that is what I want to avoid. I want to merge the xdp-file into the form and keep the data in fields not defined in the xdp-file.

  • Library more than doubles in size when importing form iPhoto

    I imported my iPhoto Library into Aperture using the standard import setting, only to find that the size of the Aperture Library is about 90GB whereas the original iPhoto library was a mere 38GB. Is there anything I can do to keep the Aperture library at about the same size as my original iPhoto library? More than doubling in size is just too much!

    Hi Léonie, thanks again for the detailed advise! I checked both my iPhoto Library and my Aperture Library and they are almost idendical as to the number of photos they show (22.424 photos in iPhoto, 22.884 photos in Aperture - and that's due to some new photos I have imported into Aperture since I imported my iPhoto Library to Aperture). Also, when following your advise to disply photos sorted by date, I only find very few duplicates in my Aperture Library (probably just a few dozen).
    Searching for stray images, I only get 104 photos listed that seem to be not properly imported into iPhoto.
    What's strange, though, I kept the folder-structure that I had created for my photos before I even started using iPhoto and where I had always put copies of the photos that I had imported into iPhoto Library (call it paranoia or whatever, but I neve fully trusted iPhoto that it would hold all my valuable photos safe ...). So there I have originals of all my photos and this folder is a full 70GB of data - as opposed to the 38GB of my iPhoto Library which has almost the exact number of photos as my folder-structure does.
    So I essentially have the following:
    - iPhoto Library with 22.424 photos and 38GB
    - Aperture Library with 22.884 photos and 90GB
    - A folder-structure where I hold duplicates of all my photos outside of iPhoto and Aperture (and NO, I don not use iPhoto nor Aperture as referenced databases) with 22.512 objects and a total of 69,44GB of data.
    Anything else you could think of? I'm lost the more I dive into this ...
    Rgds, Berthold

  • How can I stop Acrobat from reordering files when importing files to create a PDF?

    To all those more knowledgable than I,
    I am converting a larger amount of tiff files into one PDF. The TIFF files are numbered 1-100. When I "add files" in the diaologe window they reorder because Acrobat does not look at the third number so then I have to move up and move down the file names so that they are in a sequential order. Is there a way to have Acrobat not do this?!
    Thank you.

    CreatePDF is a special web page for making PDFs, for people who don't have Acrobat.
    Acrobat forum here: http://forums.adobe.com/community/acrobat/creating__editing_%26_exporting_pdfs
    Be sure to include your Acrobat version.
    Good luck!

  • Deleting images from CF-card when imported

    Hi.
    Have any of you been able to find a feature that deletes the imported images from the CF-card, so you don't have to manually delete images them from the CF-card.
    Regards, Matias V

    There isn't at tis point. Consensus view it that it's best to delete/format in camera.

  • How do I keep .mov clips from being squashed when imported into iMovie HD6?

    Hi there! First time poster... Hoping someone can help me out with this:
    I've stupidly shot some footage with my digital camera sideways, portrait-style. I used QuickTime Pro 7 to rotate the footage clockwise, preserving the aspect ratio, so now the .mov clips are 480x640 pixels (so 3:4, instead of the standard 4:3).
    When I import the clips into iMovie HD 6, the footage gets squashed to fit the 4:3 screen, making everyone look shorter and fatter. The Help file advises that iMovie "automatically adjusts incoming footage to fit the screen size (aspect ratio) of your project".
    Is there some way I can opt out of this automatic adjustment? I'd prefer to have black bands on the sides of the screen than squashed video!
    Thanks for any help you can give. Cheers!

    You'll need to make an all black 640X480 image file and add it to your video.
    Adjust its layer so it is in the background and then reduce the dimensions of your video so it fits over it.
    Bring this new file into iMovie.

  • Find directory from directory parameter.

    Hello all,
    My current requirement is to find the directory from the directory parameter.
    Using AL11 we are able to see the logical path name (directory parameter), eg ZINT, and the directory path /your/path/here/int.
    I would expect to find a function module that can perform this, but I am having some difficulty finding it.  I have found many that will give me the file from a file path, but I do not want the file or the entire file path.  My requirement is to find the first bit of the directory.
    If anyone knows of a thread, link, documentation, of function module I can check out to find the solution please let me know.
    Thanks in advance.
    Regards,
    C

    Did you try FM FILE_GET_NAME?
    This is te FM Documentation:
    FU FILE_GET_NAME
    Short Text
    Assign the Physical File Name Using a Logical File Name
    Functionality
    R/3 applications run on various platforms with various file systems. This function module enables you to
    use platform-independent logical file names in your application programs.
    Based on definitions maintained in customizing tables for platform-independent file names, the function
    module converts a logical file name to the corresponding physical file name and path for the hardware platform concerned.
    For this conversion to work for different platforms, the definition of a logical file name must include a logical
    file path, which in turn is converted to different physical file paths, depending on the particular platform.
    The platform-specific file name returned by the function module is composed of the physical file path for the current platform and the physical file name associated with the logical file name. Placeholders in physical file and path names are substituted at runtime by the corresponding current values.
    Example
    logical file name: MONTHLY_SALES_FILE
    physical file name: VALUES<PARAM_1>
    logical path: SALES_DATA_PATH
      physical path (UNIX): /usr/<SYSID>/<FILENAME>
      physical path (Windows): C:\SALES\<FILENAME>
    Example 1
    Get file name for UNIX platform
    (current system: K11)
    CALL                                                                                FUNCTION                                                                                'FILE_GET_NAME'
       EXPORTING
          LOGICAL_FILENAME = 'MONTHLY_SALES_FILE'
       IMPORTING
          FILE_NAME = FILE
          FILE_FORMAT = FORMAT.
    Result:
    FILE = /usr/K11/VALUES
    FORMAT = WK1
    Example 2
    Get file name for UNIX platform, passing a parameter
    (current system: K11)
    CALL                                                                                FUNCTION                                                                                'FILE_GET_NAME'
       EXPORTING
          LOGICAL_FILENAME = 'MONTHLY_SALES_FILE'
          PARAMETER_1 = '_TST'
       IMPORTING
          FILE_NAME = FILE
          FILE_FORMAT = FORMAT.
    Result:
    FILE = /usr/K11/VALUES_TST
    FORMAT = WK1
    Example 3
    Get file name for WINDOWS platform, with file name extension
    CALL                                                                                FUNCTION                                                                                'FILE_GET_NAME'
       EXPORTING
          LOGICAL_FILENAME = 'MONTHLY_SALES_FILE'
          WITH_FILE_EXTENSION = 'X'
       IMPORTING
          FILE_NAME = FILE
          FILE_FORMAT = FORMAT.
    Result:
    FILE = C:\SALES\VALUES.WK1
    FORMAT = WK1
    Notes
    All definitions needed for the platform-independent assignment of file names are maintained client-
    independently with transaction FILE. Logical file names (but not logical file paths) can also be defined
    specifically for the current client with transaction SF01. Transaction SF07 generates a list of current definitions.
    The following concepts are used in the platform-independent assignment of file names:
    Logical file name
    A descriptive name for a file which is associated with these values:
    physical file name
    file format
    logical file path.
    If no logical file path is specified, the function module returns the physical file name only; placeholders are
    substituted by current values.
    Physical file name
    The physical file name may contain placeholders.
    Logical file path
    A descriptive name for a path which is associated with these values:
    syntax groups (groups of operating systems)
    physical file paths.
    Physical file path
    The physical file path is defined for a particular syntax group. It must contain the reserved word <FILENAME> as a placeholder for the file name. It may also contain other placeholders.
    Operating system
    Presentation server and application server can run under different operating systems. The current value for the application server can be obtained from the system field SY-OPSYS, the value for the presentation server by calling function module WS_QUERY.
    Both operating systems must be defined and assigned to a syntax group.
    Syntax group
    Group of operating systems with a common syntax for file and path names (e.g. HP-UX and SINIX).
    Placeholder
    Reserved words, set in angle brackets, which can be included in physical file and path names (e.g.
    <DATE>, <FILENAME>). You can find information on possible reserved words in the online help (F1 help)
    for the fields physical file name and physical file path when maintaining platform-independent file names
    with transaction FILE.
    If the logical path associated with a logical file name does not specify a physical path for the current operating system (syntax group), the path stored in the profile parameter DIR_GLOBAL of the current
    system is used for generating a complete platform-specific file name.
    Parameters
    CLIENT
    LOGICAL_FILENAME
    OPERATING_SYSTEM
    PARAMETER_1
    PARAMETER_2
    PARAMETER_3
    USE_PRESENTATION_SERVER
    WITH_FILE_EXTENSION
    USE_BUFFER
    ELEMINATE_BLANKS
    EMERGENCY_FLAG
    FILE_FORMAT
    FILE_NAME
    Exceptions
    FILE_NOT_FOUND
    Function Group
    SFIL

  • My library keeps disappearing from view when I open itunes

    I recently bought a laptop and have transferred all my music from my old PC computer to my laptop. I have noticed that when I open itunes from time to time my library has disappeared from view. It's annoying as I have to keep bringing my library back in from my music folder, importing my playlists and then the podcasts have to be resubscribed. It also means I keep losing my play counts and history. It has happened about 4-5 times now. Then when I restore the library and I link my classic ipod to sync all the content has to be reloaded, which all takes time. Is there something silly that I have not done. I have been searching to see where I am going wrong and now about to lose the plot alltogether! My laptop is using Windows Vista, my PC was Windows XP. Any help much appreciated. I'm sure it's something simple!

    Hello Goldie24,
    And welcome to Apple Discussions!
    I don't have any direct answers for you when it comes to this issue, but I can point you somewhere where others might. Check out this older thread. It may end up leading you to another older thread, but it should lead you to the solution needed for this issue.
    http://discussions.apple.com/message.jspa?messageID=9345281
    Hope this helps.
    B-rock

Maybe you are looking for

  • Raw material profit centre document is not generated

    Hi All When i maintain profit centre in raw material and do GR/IR, only accounting doc is generated. The profit centre mentioned in material is reflected against both accounts in the entry. (rm inventory a/c and GR/IR clearing a/c) When I go and see

  • Hard Drive and Desktop Icons Have Disappeared From Dessktop

    I can locate all the files and access them via "search" and clicking on them, but can't see them on the desktop. Problem started with difficulty using Spotlight, which eventually led to a freeze and when I restarted, the images were gone. Have alread

  • Check for Vendor PAN Number

    Hi, I want to make a check in vendor code creation. If vendor PAN Number not maintained then system will give an error message. Who I can make this check. Please provide me suggestion. Thanks & Regards, Hemant Maurya

  • Firefox 3.6.15 is not loading pages in mac osx 10.6.6

    Hi, I have a macbook white running snow leopard 10.6.6, core 2 duo, 2 GB and firefox is not loading pages. I have tried: 1) install flashplayer again(i found a topic in Internet about that) 2) restart 3) reinstall 4) clean the cache and other browser

  • Performance of the LOD approach for network analisys

    Hi to all, I open new thread for speak about performance of LOD approach for Network analysis using Java API as continuing from this thread: Partitioning of the Network for using LOD API I remember you that: - I'm using Oracle 11g R2; - my network co