How to find the source files for import

I have difficulties to find a group of records after I imported the bridge to lightroom.  Records are in bridge and appear in my Explorer of files (windows 10).  I have number of file folders 1-12 for each month of the year.  Until recently all my subfolders in monthly records were available.  If I make an order import and select the drive C all records are there. After the import my files in the browser do not reflect the new folder.  He has always worked in the past, but now I can't for files and folders just imported.

If I look at the previous import at the top of the browser, the images are in lightroom but I can't find them in the folder that I imported them.  The folder does not appear.

Any ideas?

Thank you

Don

Hi donm,.

You can just + click or Ctrl + click on the folder in the library and go to the option 'Show in Explorer' or 'Show in Finder' to see the exact location of this folder on the disc.

See the screenshot below

Let us know if that helps.

Kind regards

Mohit

Tags: Photoshop Lightroom

Similar Questions

  • where can I find the source files for vmxnet3

    Hello

    I just installed vmWare tools and having one of my (i.e. vmxnet3) adapters come with her.

    However, I am not able to get the files source for thje pilot in order to edit and compile my own. The only source files I see is

    VMware-Tools-distrib/lib/include/VMCI/vmci_sockets.h
    /VMware-tools-distrib/lib/GuestSDK/vmSessionId.h
    /VMware-tools-distrib/lib/GuestSDK/includeCheck.h
    /VMware-tools-distrib/lib/GuestSDK/vm_basic_types.h
    /VMware-tools-distrib/lib/GuestSDK/vmGuestLib.h

    My kernel version is 2.6.18 - 164.el5

    Could someone tell me where I can get the source files.

    Thank you!

    You can take a look here http://downloads.vmware.com/d/info/datacenter_downloads/vmware_vsphere_hypervisor_esxi/4_0#open_source

  • How to identify the source file and edit reports in Oracle Sales R12.1.3

    We use R12.1.3 with Database 11g.

    I would like to know - how to change the report.

    --------------------------------------------------------------------

    For example if I want to edit a report in the module INVENTORY existing any report.

    • After the name of the report identify the concurrent program
    • The program contributing to identify the name of the executable file
    • In the executable file name identify the
      • Method of execution: Oracle report
      • Running file: name of the source file for the report
      • Take backup and edit the report and replace the report in the TOP >

    But in the sales module (it is not form based Oracle - I think it is developed on OAF)

    I would like to know how to identify and modify the report.

    According to standard - module sales Oracle provides three report and according to our Advisor to use these three reports, we need to install BI

    So we must find the solution through internal developments

    Hello

    Set the option to profile ' FND: Diagnostics ' to 'Yes' at the level of the user and you will be able to get 'on this Page' link at the bottom of the page.

    Kind regards

    Zahid

  • How to find the library files that are not due to problems of indexing

    I need help to know how to find the library files that are not as a result of indexing problems?

    I use Windows 7

    Thank you

    Charlene

    Try to open the folder that the library uses directly.  For example, if it is your Documents folder, open C:\Users\Charlene\Documents

  • How to find the source code (package / service..) a concurrent program

    Hello


    I gives me the name of a concurrent program.

    Now my question is, how do I find the source code for the simultaneous progra.


    Could someone explain to me.

    FYI: I have full access (sysadmin).

    Thank you
    Prasad
    Senior Oracle Apps DBA

    PL post Details of the operating system, database and versions EBS.

    Responsibility of the system administrator, go to the competitor > program > set and search for the name of your simultaneous program. When you find it, there will be a 'the executable name' that are associated with him.

    Go to the competitor > program > executable and locate the 'name of the executable"- and you will get the information you need.

    http://docs.Oracle.com/CD/E18727_01/doc.121/e12897/T302934T458253.htm

    HTH
    Srini

  • How to find the child level for each table in a relational model?

    Earthlings,

    I need your help, and I know that, "Yes, we can change." Change this thread to a question answered.

    So: How to find the child level for each table in a relational model?

    I have a database of relacional (9.2), all right?
    .
         O /* This is a child who makes N references to each of the follow N parent tables (here: three), and so on. */
        /↑\ Fks
       O"O O" <-- level 2 for first table (circle)
      /↑\ Fks
    "o"o"o" <-- level 1 for middle table (circle)
       ↑ Fk
      "º"
    Tips:
    -Each circle represents a table;
    -Red no tables have foreign key
    -the picture on the front line of tree, for example, a level 3, but when 3 becomes N? How is N? That is the question.

    I started to think about the following:

    First of all, I need to know how to take the kids:
    select distinct child.table_name child
      from all_cons_columns father
      join all_cons_columns child
     using (owner, position)
      join (select child.owner,
                   child.constraint_name fk,
                   child.table_name child,
                   child.r_constraint_name pk,
                   father.table_name father
              from all_constraints father, all_constraints child
             where child.r_owner = father.owner
               and child.r_constraint_name = father.constraint_name
               and father.constraint_type in ('P', 'U')
               and child.constraint_type = 'R'
               and child.owner = 'OWNER') aux
     using (owner)
     where child.constraint_name = aux.fk
       and child.table_name = aux.child
       and father.constraint_name = aux.pk
       and father.table_name = aux.father;
    Thought...
    We will share!

    Thanks in advance,
    Philips

    Published by: BluShadow on April 1st, 2011 15:08
    formatting of code and hierarchy for readbility

    Have you looked to see if there is a cycle in the graph of dependence? Is there a table that has a foreign key to B and B has a back of A foreign key?

    SQL> create table my_emp (
      2    emp_id number primary key,
      3    emp_name varchar2(10),
      4    manager_id number
      5  );
    
    Table created.
    
    SQL> ed
    Wrote file afiedt.buf
    
      1  create table my_mgr (
      2    manager_id number primary key,
      3    employee_id number references my_emp( emp_id ),
      4    purchasing_authority number
      5* )
    SQL> /
    
    Table created.
    
    SQL> alter table my_emp
      2    add constraint fk_emp_mgr foreign key( manager_id )
      3         references my_mgr( manager_id );
    
    Table altered.
    
    SQL> ed
    Wrote file afiedt.buf
    
      1   select level lvl,
      2          child_table_name,
      3          sys_connect_by_path( child_table_name, '/' ) path
      4     from (select parent.table_name      parent_table_name,
      5                  parent.constraint_name parent_constraint_name,
      6                  child.table_name        child_table_name,
      7                  child.constraint_name   child_constraint_name
      8             from user_constraints parent,
      9                  user_constraints child
     10            where child.constraint_type = 'R'
     11              and parent.constraint_type = 'P'
     12              and child.r_constraint_name = parent.constraint_name
     13           union all
     14           select null,
     15                  null,
     16                  table_name,
     17                  constraint_name
     18             from user_constraints
     19            where constraint_type = 'P')
     20    start with child_table_name = 'MY_EMP'
     21*  connect by prior child_table_name = parent_table_name
    SQL> /
    ERROR:
    ORA-01436: CONNECT BY loop in user data
    

    If you have a cycle, you have some problems.

    (1) it is a NOCYCLE keyword does not cause the error, but that probably requires an Oracle version which is not so far off support. I don't think it was available at the time 9.2 but I don't have anything old enough to test on

    SQL> ed
    Wrote file afiedt.buf
    
      1   select level lvl,
      2          child_table_name,
      3          sys_connect_by_path( child_table_name, '/' ) path
      4     from (select parent.table_name      parent_table_name,
      5                  parent.constraint_name parent_constraint_name,
      6                  child.table_name        child_table_name,
      7                  child.constraint_name   child_constraint_name
      8             from user_constraints parent,
      9                  user_constraints child
     10            where child.constraint_type = 'R'
     11              and parent.constraint_type = 'P'
     12              and child.r_constraint_name = parent.constraint_name
     13           union all
     14           select null,
     15                  null,
     16                  table_name,
     17                  constraint_name
     18             from user_constraints
     19            where constraint_type = 'P')
     20    start with child_table_name = 'MY_EMP'
     21*  connect by nocycle prior child_table_name = parent_table_name
    SQL> /
    
           LVL CHILD_TABLE_NAME               PATH
    ---------- ------------------------------ --------------------
             1 MY_EMP                         /MY_EMP
             2 MY_MGR                         /MY_EMP/MY_MGR
             1 MY_EMP                         /MY_EMP
             2 MY_MGR                         /MY_EMP/MY_MGR
    

    (2) If you try to write on a table and all of its constraints in a file and do it in a valid order, the entire solution is probably wrong. It is impossible, for example, to generate the DDL for MY_EMP and MY_DEPT such as all instructions for a table come first, and all the instructions for the other are generated second. So even if NOCYCLE to avoid the error, you would end up with an invalid DDL script. If that's the problem, I would rethink the approach.

    -Generate the DDL for all tables without constraint
    -Can generate the DDL for all primary key constraints
    -Can generate the DDL for all unique key constraints
    -Can generate the DDL for all foreign key constraints

    This is not solidarity all the DOF for a given in the file object. But the SQL will be radically simpler writing - there will be no need to even look at the dependency graph.

    Justin

  • I should "separate compiled code in the source file" for *.ctl files?

    There are a few good reasons to code compiled separately to screw

    Now, the option is also available for custom orders/type definitions. I wonder if there is any benefit whether for the separation of updating the code of these? None of the reasons for separation will apply to *.ctl files, after all. In fact, it might even be disruptive - in some quick experiments, separation of compiled code has increased the size of the files *.ctl!

    (Transferred to https://lavag.org/topic/19681-should-i-separate-compiled-code-from-source-file-for-ctl-files/ )

    Hi JKSH,

    Good question!  After searching for a bit, the first reason mentioned in the KB, you are connected (to simplify the source code control) looks like it could apply to the .ctl file.

    I guess that similarly to how changes in 1 VI cause unsaved changes in any screws that call it, changes with a .ctl file can do the same thing.  However, it seems that separation of compiled code make it possible only to make changes to a file at a time, without the domino effect.

    Best,

    David Randolph

    Engineering applications

    National Instruments

    www.NI.com/support

  • How to divide the Source file into smaller files without export?

    Hi all

    I am a beginner with PPro CS4 and video editing in general. I did a lot of research on Google and the search of these forums for an answer to this question, but I have not found a clear answer. Here's my problem:

    I have many hours of HDV video in recent years with a Canon HV30. This sequence is on dozens of DV tape cassettes. I want to capture most of it on the disk.

    When I capture a band on the disc, I get a single large mpeg4 file. (Body captures all HDV films in mpeg4). "select Scene" does not work with the HV30, so my only way to make a small capture files would be set In/Out points with batch capture. But that would mean hours of fast forward and back with VCR type controls on the camera for the revision of all bands and points. I thought it might be more QUICK to capture everything simply a whole band at once, and THEN examine the band captured the Organization (he is much faster using the Purifier), and by dividing the file into smaller files within the Organization, thus avoiding mechanical advance and rewind on the camera itself.

    But the only way I can find for it seems to imply EXPORT clips. Am I wrong to think that the export of a clip to a new file involves a degradation of the original mpeg4 source file? Or there will be no loss of quality if I simply export to mpeg4 format?

    It seems that there should be an easy way to simply divide the initial capture in small source files for editing later, without putting the images through a new generation of (exporting) treatment, which could result in a loss of quality. Or I'm wrong about this?

    (CS4 Master Suite, i7 3630 k, 16 GB RAM, C: 256 GB SSD, 1 t D:, E: 1 t F3 setpoint setpoint F3)

    HDV film is mpeg2 (which is a number). CS4 is not scene detect you will need to use HDV split for this.

    http://strony.aster.pl/paviko/hdvsplit.htm.

    You can run your files already captured by hdv split and it will cut the file into clips and you leave.

  • How to find the audio driver for HP sleekbook

    Can not find the audio driver for my HP laptop...

    I bought the new elegant book, model no HP. Elegant Pavilion book 15th-b001

    After 2-3 months, I found my laptop speakers weren't working and its got very slow. I couldn't do so I kept using headphones.
    recently, I've run the driverpack and accidentally a few update audio driver and voice my laptop has increased incredibly, I was surprised, it was very good,

    but now, I've updated my windows 8 to 10 and all the previous driver deleted and voice became too slow as it used to be.,.
    now I run the driverpack 15 which is a more up-to-date version, but they did not update this driver, and always the voice of my laptop is too slow.
    I don't know the exact name of that drivers, how do I know the name of that drivers?
    on the internet, I tried too many drivers audio, high definition, etc., but the result is zero,
    con someone help me about this?

    http://ftp.HP.com/pub/SoftPaq/sp59501-60000/sp59802.exe

  • Does anyone know how to find the .gid files?

    try opening a software I've had for a few years & never had a problem so far - telling me that they cannot find the .gid file - appreciate any help
    Thankx

    What is the application you are trying to use and what is the full error message?

    . Generally, GID files are associated with the Windows Help files and should be created automatically when the first opening of a help file.  WinHelp is obsolete and is not available in Vista or Win 7.

    A WinHelp file has a ".hlp" suffix It can be accompanied by a table in the content file (.cnt) if option the created help developer one. When Windows opens a WinHelp file, it creates a file in the same directory .gid, containing information about the file .hlp such as the location and size of the window. If the user clicks on the 'Search' tab and allows indexing of key words, Windows creates an index with the .fts (full text search) extension file.

    There are some specialized software applications that also use this file extension (example).

  • How to find the latest diagnostics for 11i patches

    How to find the latest patches of diagnostics for 11i, all documents.

    You can find the latest patch in (Note: 167000.1 - Guide of Installation of E-Business Suite Diagnostics).

    You can also check (Note: 235307.1 - E-Business Suite Diagnostics Tools FAQ and Troubleshooting Guide for version 11i and R12).

    Thank you
    Hussein

  • NB200 - how to find the 3G module for it?

    Hello

    Pls how I find the 3G module in my NB200 - PLL20E?

    Thank you

    Hello

    What do you mean exactly?
    You want to upgrade your NB200 with a card 3G?

    If yes then you must make sure that your NB200 could be improved using this card.
    I'm not sure if this is possible.

    But don t give up boyfriend Toshiba authorized service partner in your country could provide details.
    Guys might be able to tell if this is possible and could provide a good 3G module

    If you get more details please share with us!

    See you soon

  • How to find the source of the MSIfe * .log files - windows 7

    In the windows/temp directory, I have more than 100 GB of logs with the syntax of MSIfe *. Each file is about 7 257 KB in size.

    Any suggestions on how I can determine the source of these files?

    Thank you

    Brad

    +++++++++++++++++++++++

    HERE ARE THE FIRST LINES OF ONE OF THE FILES:

    = Registration began: 19/06/2012-13:57:59 Build type: SHIP UNICODE 5.00.7601.00 appeal process: C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorsvw.exe =.
    MSI (c) (14:84) [13:57:59:458]: Resetting cached policy values
    MSI (c) (14:84) [13:57:59:458]: value of strategy Machine 'Debug' is 0
    MSI (c) (14:84) [13:57:59:458]: * RunEngine:
    Product: {3D8DBCCD-FE59-3648-A084-6D2F78351F9E}
    Action:
    Command line:
    MSI (c) (14:84) [13:57:59:459]: Client and UI is none or basic: full installation running on the server.
    MSI (c) (14:84) [13:57:59:459]: grabbed execution mutex.
    MSI (c) (14:84) [13:57:59:461]: Cloaking enabled.
    MSI (c) (14:84) [13:57:59:461]: attempt of activation of all disabled privileges before calling install on server
    MSI (c) (14:84) [13:57:59:463]: meter is incremented to disable the stop. Counter after increment: 0
    MSI (s) (48:18) [13:57:59:466]: running the installation inside the multi-package transaction {3D8DBCCD-FE59-3648-A084-6D2F78351F9E}
    MSI (s) (48:18) [13:57:59:466]: grabbed execution mutex.
    MSI (s) (48:B8) [13:57:59:467]: Resetting cached policy values
    MSI (s) (48:B8) [13:57:59:467]: value of strategy Machine 'Debug' is 0
    MSI (s) (48:B8) [13:57:59:467]: * RunEngine:
    Product: {3D8DBCCD-FE59-3648-A084-6D2F78351F9E}
    Action:
    Command line:
    MSI (s) (48:B8) [13:57:59:467]: value of strategy Machine 'DisableUserInstalls' is 0
    MSI (s) (48:B8) [13:57:59:483]: SRSetRestorePoint is ignored for this transaction.
    MSI (s) (48:B8) [13:57:59:486]: dialogue of end not activated
    MSI (s) (48:B8) [13:57:59:486]: ==> C:\Windows\Installer\495c6.msi original packaging
    MSI (s) (48:B8) [13:57:59:486]: we're running out of ==> C:\Windows\Installer\495c6.msi package
    MSI (s) (48:B8) [13:57:59:501]: APPCOMPAT: substitution of uninstall flags found.
    MSI (s) (48:B8) [13:57:59:501]: APPCOMPAT: uninstall VersionNT found override.
    MSI (s) (48:B8) [13:57:59:501]: APPCOMPAT: substitution of uninstall ServicePackLevel found.
    MSI (s) (48:B8) [13:57:59:502]: APPCOMPAT: looking for entry with ProductCode '{3D8DBCCD-FE59-3648-A084-6D2F78351F9E}' appcompat database
    MSI (s) (48:B8) [13:57:59:502]: APPCOMPAT: no matching ProductCode found in the database.
    MSI (s) (48:B8) [13:57:59:505]: MSCOREE not loaded loading copy from system32
    MSI (s) (48:B8) [13:57:59:508]: value of strategy Machine 'DisablePatch' is 0
    MSI (s) (48:B8) [13:57:59:508]: value of strategy Machine 'AllowLockdownPatch' is 0
    MSI (s) (48:B8) [13:57:59:508]: value of strategy Machine 'DisableLUAPatching' is 0
    MSI (s) (48:B8) [13:57:59:508]: value of strategy Machine 'DisableFlyWeightPatching' is 0
    MSI (s) (48:B8) [13:57:59:508]: APPCOMPAT: looking for entry with ProductCode '{3D8DBCCD-FE59-3648-A084-6D2F78351F9E}' appcompat database
    MSI (s) (48:B8) [13:57:59:509]: APPCOMPAT: no matching ProductCode found in the database.

    Here are the comments Windows log files install.

    Detailed logging must have been lit at some point.

    There's a Fixit turn off in this article here:

    http://support.Microsoft.com/kb/2545723

  • How to change the second destination for imported files?

    sstarting with 4 LR, I used a second destination to backup my files during import.  All in the middle of life 5 LR, the second destination suffered a catastrophic failure, and I replaced the drive with a large SSD.  To distinguish it from other readers, I always add SSD like the tail of a drive name to distinguish regular readers or raid arrays.  In all cases, the change of name of the new command meant that I had to change the name of destination for the second copy of the imported files.  I looked high and low by books and textbooks online and could never find the location for a modifiable version of the location of the second drive.  I faced the same problem in 6, which seems to work like 5 in this field.  It should be drop-dead simple and obvious, but I sure can't find.  I can get the full panel which should allow me to change the locations, but nothing in the Panel seems editable, clickable, except the main destination.

    can someone explain the secret formula of decoder for it.  Right now I'm reduced to a script Automator that backup the Lightroom photo by car to the second destination using carbon copy more closely, but it seems Aussie an inefficient use of resources.

    Thanks for your help.

    cause, it was a mistake to 02:00 my time and I didn't know that I had done.

  • How to divide the source file without losing labels

    Hello

    I wonder how I could split my file source into two (or more) without losing the tags...

    Hello again, Wolfgang!

    OK, now I understand! However, I fear that there is no import in CVI mechanism, so that you can move the tags to another folder, other than doing this manually.

    However, it would be possible to realize a work around. Since you already have this information in your file of CFS (line Tags field), you can manually copy - paste on the line numbers the new file containing the source code you cut in half of the old file. A few steps:

    1. Either your source code file containing a.c source tags.
    2. Make a copy of a.c (e.g., British Colombia) and add b.c to the project.
    3. In your CFS file, copy - paste the field line Tags of a.c to the wire to the corresponding entry of the BC.
    4. Return to CVI, ensuring that the source code and the source of British Colombia tags are a perfect clone of a.c.
    5. Make the required changes to the a.c and b.c, such as the final result is the logical split of the original file. When you change a source file lines, source tags are also moved to the source editor.
    6. The end result is the code split between a.c and British Colombia, while keeping the corresponding position of the source tags.

    I am aware that there is work involved in the execution of these operations, but the result should be your result.

    I hope this helps, Wolfgang!

Maybe you are looking for

  • How the MacBook 13 "deviates from the 15" other than appearance?

    Is there something outside the obvious (size) which differentiates the two?

  • New z500 - fan runs at high speed on startup

    Hello I just bought a new Ideapad, a MBYP9GE Z500, that I got no windows, when I turn on the laptop it works in the BIOS. The problem I have is that the fan starts in high speed immediately and it is very noisy at start up. Is this normal? I want to

  • Reinstall Windows 7/creating installation disk

    Hello I have Windows 7 installed on my Dell laptop. It came with W7 installed and not bundled with backup/install discs. I have since reinstalled Windows 7 using a Dell Windows 7 DVD friends, whom he had delivered with a Dell PC. Everything went well

  • Talk to Spokle with ezVPN?

    Hello I would like to connect two external 'places' through a central hub of 3030 VPN. One of them is a complete network connected to the VPN concentrator in the principal's Office with a Mode Cisco 836 (ezVPN with network-extension). The other is a

  • Recommendation for a good registry cleaner?

    For purposes of maintenance, looking for a good registry cleaner, ran the cleaner in Norton security suite, but have stopped using Norton because of other problems.