Copy File From One Drive to Another & Missing Keyword Tags

Hi,
I use LR 2.7.  I want to copy one file from one drive to another drive with the same file name.  I thought you could drag the file, but it doesn't copy over the file in the other drive, can you explain what I have to do? 
Also, I tried to import the folder into another drive, but it doesn't copy the keyword tags.  Is there a way to do this?
Thanks
Barb

Hey Barb,
   Well, if you use the Year/Month/Day/pictures_here  format, none of the folders contains a massive amount of folders.  It's not the number of folders that generates problems, it's having them all in _one_ folder that creates slow-down issues.  Imagine if you had a deck of cards; look for one card... you have to go through all 52 cards to find it.  But, if you broke it down into the 4 groups, you only have to go through 13, which is lots faster.  Now imagine going through 15000 instead of 52...
Look at the way lightroom can automatically import by date;  it has several preset formats.  If you pick one of those, then when you import new photos, it will automatically create any missing ones, and you have lots less to do.
Depending on how much work you have already done, you might consider making a new catalog and just importing all of your photos again, and let it create everything quickly for you.
You could save all of your "edit" changes by writing out all of the xmp files first.  But with 15000 files in one directory, this will double it to 30000 (one per image!), but will preserve all of your edits if you choose to make a new catalog approach.
As for combing catalogs, once you have one catalog the way you want it, you can select "import from catalog" and it will suck it into a new one, thus combining the catalogs.  The only problem I can see is that it will import it in the format you already have it, so you have to organize it manually before you import it.  Otherwise, you'll get your old format and your new format in the one catalog (but can then move pictures around if you need to).
Personally,  I'd go the 'write xmp files, create new catalog' approach.  Then just recreate my collections, etc.
But either way you do it, it will take some time processing, as that's a lot of files to start with!
Ciao!
Jason

Similar Messages

  • Best way to copy large VM files from one drive to another?

    Hi all, I am wondering what the best and fastest way there is to copy a large VM file from one drive to another (external drive to internal drive). Should the .pvm folder (in my case with Parallels) be zipped first? The files I need to copy range from 50 to 70gb. thx for any insight! ps. Even Bombich admits it's difficult for CCC to do...not clear why, but it does slow a full clone down to a crawl. I also have Chronosync at my disposal, but suspect the same is true there as well. Cheers!
    coocoo

    I don't think it matters much which way you do the job. I use Parallels to compress by drives on a regular basis. If you want to copy a dynamic VM, which can grow to just about any size as required, to another drive you will use about the same amount of time zipping the VM - transfering the VM - unzipping the VM, as you would just moving the VM.
    I've moved my VM files to a second partition that does not get cloned to my bootable backup that I create with SuperDuper. I've excluded my entire VM folder from Time Machine and just make zipped backups for each system after any large Service Pack Updates from Microsoft, or any intricate program installations. These get copied to a second partition on my Time Machine drive manually.
    My VM's sizes are kept under control by using common Documents-Movies-Music folders for the Mac and the VM's. My VM's do not have the data files the programs use, they are on my Mac and get backed up every hour with Time Machine.
    Reinstalling a VM just means deleting the broken copy, unzipping my latest backup, and putting into the same folder that Parallels knows to use. The data files are always accessible, even if they were created after my latest VM backup.

  • How do you copy files from one user to another

    How do you copy files from one user to another user on the same machine?

    open your home folder in finder move file to public, log into other account, click the go tab on the finder menu, select computer, your hard drive (Macintosh HD Default)>Users, the origonal user> public and drag that file to your specified folder.
    hope it works
    Craig.

  • I have over 200 hours of HD video on 5 different TB Thunderbolt GRaid hard drives. I need to reorganize my projects, moving large files from one drive to another. Advice?

    I have over 200 hours of HD video on 5 different TB Thunderbolt GRaid hard drives. I need to reorganize my projects, moving large files from one drive to another. Advice?

    Do some testing to get your method working right with some less than important footage.
    Copy/paste files where you want then.
    Use the FCE Reconnect feature to tell FCE where the newly copied files reside.
    Make sure the new location and files are working as expected with your Projects.
    Delete the original files if no longer required.
    Al

  • Moving files from one drive to another

    How can I move a batch of files from one drive to another using Bridge CS4?

    There are two methods.  One involves your operating system and the other uses Bridge.
    Using Microsoft (sorry to you Mac users) have Windows Explorer open to the directory containing your files.  Click and drag the directory from one drive to another.  Conversely if you want to copy just a selection of the files follow this routine.
    Create a duplicate named directory in the destination drive.  Select the file you wish to move and do so from directory to directory.
    In Bridge it is even easier.  In Bridge ensure that the Folders sub pane is open and visibile.  Just click on the source directory and click and drag it to the destination drive.
    Testing on my part (I routinely move up to 30 gigabytes at a time) has demonstrated that Bridge adds a little time to the process depending on the size of the source files.  I suspect that this has to do with additional overhead of the program.
    To be safe I would recommend that you do use the copy method instead of moving the directory.  This is a failsae in case any problems crop up during the process.  It takes mere moments to delete the source directory after the copy routine has run.
    Wayne Webb

  • Java Program to copy file from one directory to another failing

    Hello All,
    Oracle Applications 12.1.3
    RDBMS: 11.2.0.30
    SQL*Plus: 10.1.0.5.0
    Java beginner here so help is much appreciated.  I'm have some java code that I'm using to copy a file from one directory to another in an Oracle Applications Server.  I notice that when moving to a new instnace I started to get file not found errors.  I think it's because of the directory.  My question is, does the directory in which I trying to pick up the file have to be a DBA_DIRECTORY, or a UTL_FILE directory in order for the java to find the file and move it?
    Here is my code...
    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "COPY_FILE_JVS" AS
    import java.io.*;
    public class COPY_FILE_JVC{
      public static void copy(String SourceFile, String DestDir) {
        File source = new File(SourceFile);
        File dest = new File(DestDir);
        File cpDestFile = null;
        try {
          if (dest.isDirectory()) {
              if(source.isFile()) {
                System.out.println("File name = " + source.getName());
                System.out.println("File name dest = " + dest.getPath() );
                System.out.println("File name cpDestFile = " + dest.getPath() + File.separator + source.getName());
                cpDestFile = new File(dest.getPath() + File.separator + source.getName());
              else {
                System.out.println("Directory or File Not Found");
                return;
          BufferedInputStream  br = new BufferedInputStream (new FileInputStream (source));
          BufferedOutputStream  bw = new BufferedOutputStream (new FileOutputStream (cpDestFile));
          int read = 0;
          while((read = br.read()) != -1) {
            //System.out.println((char)read);
            bw.write(read);
          br.close();
          bw.close();
        catch (FileNotFoundException e) {
        e.printStackTrace();
        catch (IOException e) {
        e.printStackTrace();

    I get these messages when calling the java from SQL Plus as follows...
    serveroutput on size 100000;
    dbms_java.set_output(1000000);
    MY_PKG.CopyFile('/home/my_user/set_env.sh','/interface/home'); (this is call to oracle pl/sql package which calls the java.)
    PL/SQL procedure successfully completed.
    Directory or File Not Found
    PL/SQL procedure successfully completed.
    If I change the directory from /home/my_user/ to any directory that is defined in DBA_DIRECTORIES or is a UTL_FILE directory to program works.  Is it perhaps because the java is in a PL/SQL package as seen below?  The PL/SQL program runs as the APPS user and I have issued the following the command grant JAVASYSPRIV to APPS.
    Here is the PL/SQL Package....
    CREATE OR REPLACE PACKAGE BOLINF.MY_PKG AUTHID CURRENT_USER AS
    CopyFile(p_SourceFile IN VARCHAR2, p_DestDir IN VARCHAR2);
    +++++++++++++++++++++++++++++
    CREATE OR REPLACE PACKAGE BODY BOLINF.MY_PKG  is
    CopyFile(p_SourceFile IN VARCHAR2, p_DestDir IN VARCHAR2)
    AS LANGUAGE JAVA NAME 'COPY_FILE_JVC.copy(java.lang.String, java.lang.String)';

  • How to copy file from  one location to another

    Hi,
    I am new to java, I tried the following code to move the file from one location to another
    public class CopyFiles {
    public String copy ( File source, File target)
    throws IOException {   
    FileChannel sourceChannel = null;
    FileChannel targetChannel =null;
    try {   
    sourceChannel =new FileInputStream(source).getChannel();
    targetChannel= new FileOutputStream(target).getChannel();
    targetChannel.transferFrom(sourceChannel, 0,
    sourceChannel.size());
    finally {   
    targetChannel.close();
    sourceChannel.close();
    return "Success";
    public static void main(String [] args) throws Exception{   
    File source = new File("C:\\users\\download.pdf");
    File destinationFile = new File("C:\\apple\\download.pdf");
    copy(source, destinationFile);
    The above code is working perfectly, but I Don't want to include the file name in destination file. i.e. File destinationFile=new File("C:\\apple"), and at the same time the pdf with same name has to get stored in the destination location, how can I achieve this.

    kameshb wrote:
    I Don't want to include the file name in destination file. i.e. File destinationFile=new File("C:\\apple"), and at the same time the pdf with same name has to get stored in the destination location, how can I achieve this.It's not totally clear what you're saying here, but what I think you mean is that you don't want to explicitly set the destination file name--you want to just give the copy the same name as the original. Yes?
    If that's the case, then break the original up into separate directory and file name portions, and then construct the destination path from the destination directory plus original file name. You can do that by manipulating the full path string, or by using the methods in java.io.File.

  • Copy File from One Location to Another Location through xcopy or any

    Hi,
    I Need to copy one file from one location to another location. That file need to save in C:\Windows\System32 folder
    I need to create one .bat file and i want apply that bat as a startup script through GPO.
    I tried through XCopy if i test in machine that is working. If i tried in other machine that is not working. becoz of some Credential issue
    I tried in the script by netuse command after that my script itself not working.
    SET username=XYZ\Administrator
    SET password=abcd
    @ECHO OFF
    cmd "cd C:\"
    net use "\\10.50.5.68\c$\Windows\System32" %password% /user:domain\%username%
    :copy
    Xcopy /S /I /E D:\DLL \\10.50.5.68\c$\Windows\System32 
    Regards, Hari Prasad.D

    You cannot do that in a startup script.  You do not need to do that in a startup script.
    To add files to the system use GP Preferences.
    On Window 7 and later only the Trussted Installer is allowed to add files. (That means only Microsoft.)
    No programs or users should ever alter files in the system area.
    ¯\_(ツ)_/¯

  • Copying files from one workstation to another only works in one direction

    I could copy files from my workstation to another workstation but could not copy files from that workstation to my workstation.  There are 2 Cisco switches between these workstations.
    I found out that one switch had its workstation ports hard coded to 100Mbps but the uplink ports (on both switches) were set to auto (the uplinks were 1 Gbps ports).  This caused the copy problem.  Once the w/s ports were set to auto, the problem
    went away.  I'm just wondering if anyone else has had this problem but found that the solution was something different than what I found?
    William Fearn

    I don't think that is possible, to platform specific. You'll need to make the directories accessible without password protection, or use another way of copying the files, such as FTP. There are multiple FTP packages available for java, such as:
    http://jakarta.apache.org/commons/net/
    (of course that would require setting up some sort of FTP server)

  • How to copy very large number of files from one drive to another???

    I'm a fairly experienced Mac user for serveral years but this problem really has me stumped.
    I'm trying to copy or move 152,000 files from one external drive to another drive. I can highlight (Cmd - A) all the files on the first drive and drag them to the second drive but Finder always shows 32,768 files being copied no matter what I try.
    Any and all suggestions on how to move/copy a large number of files from one external drive to another are greatefully appreciated.
    Thank you in advance,
    Mack

    I would use the command line tool rsync.
    For instance with: rsync -av source-dir destination-dir
    -a The files are transferred in "archive" mode, which ensures that symbolic links, devices, attributes, permissions, ownerships, etc. are preserved in the transfer.
    -v Verbose, so you see the progress.
    Rsync is fast and really, really powerful and many times used in shell scripts and the like to automatically backup and/or sync stuff. Google a bit for more info.

  • Move SAPDATA files from one drive to another

    Hi,
    I have a DR server running on Windows 2003 and Oracle 10.2.
    The SAPDATA drive Z is running out of space and I need to move it to a bigger drive.
    The server has two RAID 5 interfaces where all the disks are located i.e Disk 0 and Disk 1.
    Below is the plan:
    1)     create a new drive K in Disk 1
    2)     manually copy all SAPDATA files from old drive Z (located in Disk 0) to drive K
    3)     rename the old drive Z in Disk 0 to another alphabet
    4)     rename the new drive K to Z
    Start the server and SAP services and there should not be any issues for SAP in recognizing the "new" enlarged drive Z,
    do you agree?
    Thank you.

    Hi,
    Yes this will work. You can proceed.
    But make sure that you take a backup before proceeding further.
    Regards,
    Nirmal.K

  • Moving RAW files from one drive to another without loosing all your work in Lightroom

    I am posting this for two reasons, the first is I have been trying to figure out how to get my raw files off my hard drive & onto my external hardrive for ages, as my laptop is filling up & slowing down with the huge files my new camera captures. I have been researching this & have found it hard to find a clear answer to my particular problem using Windows 7 not a Mac.
    After loosing some files in Lightroom when I moved them within Explorer instead of Lightroom, & being unable to figure out how to add a new drive in the Library module in Lightroom to move them to, I wanted to make sure I got it right when I moved the lot of them. I finally figured out a way, it might be round about, but it got it done without any trouble.
    This is how I moved my files:
    In Windows Explorer I moved one folder which Lightroom uses, from my laptop to the drive I want to store them all on from now on.
    Then in Lightroom, under 'Library' (along the top, eg 'File' 'Edit' 'Library' etc) I selected 'Find missing photos' & led Lightroom to the new location. Now my external hd as well as my laptop hd was listed under 'Folders'  (on the Left hand side of the screen along with 'Navigator' 'Catalog' 'Folders' etc) in the Library module.
    After that it was simple. Just a matter of dragging & dropping from my C drive (laptop)to my G drive (external hd) while in Lightroom; Library module. This way Lightroom keeps track of where the files are stored & nothing is lost.
    From now on I will be importing raw files from my camera to my external hd & working on them all from there.
    If anyone has a simpler way please share it. I am very new at this & don't profess to be an expert. So any advice would be greatly appreciated
    The second reason for this post is that I'd like to know how to make sure that the adjustments made in Lightroom are stored on the external hd as well, incase anything happens to the laptop?
    Is exporting the catalogue what I need to do?
    Or can I back up the Lightroom adjustments to my external hd somehow?
    OR when I moved the raw files did this information move with them?
    I understand that my raw files are the original unaltered files & that the changes made in Lightroom are recorded seperately & applied in Lightroom itself..... Well, that's what I think I know about how it all works after a few months of using it, so please forgive me if I'm missing something & I'll be very happy to be enlightened if you'd be so kind
    Happy New Year to you all!

    All the adjustments are stored in the catalog (not in the file). So you want to back it up, and the external is a good place. In the catalog settings (Edit > Catalog Settings > General) there is an option to set a regular backup schedule, and you'll be asked where you want to put it.
    The backup is just a regular copy of the catalog, and you can simply launch Lightroom from that, by double-clicking it.
    The image files themselves should also be backed up of course, but that's outside Lightroom.

  • How to copy file from one table to another table at another database

    I need to transfer my tables from one workspace and schema to another workspace and schema. Basically I need to create again all the tables at this new schema. How could I transfer data from tha table at old schema to the table at new schema when this table has files stored in it? (data type is blob)
    thank you so much,
    Silver

    Hello Silver,
    Depending which database you're using (if it's available) I would recommend to use datapump.
    Datapump allows you to copy an entire schema to another database, it's the "new" export/import you might now.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/
    http://www.apexblogs.info/
    REWARDS: Please remember to mark helpful or correct posts on the forum

  • How to copy files from one user to another on same macbook pro

    I used the migration assistant to move files from an old windows pc to my new macbook pro.  It created a second user and put everything there.  I now can't figure out how to move them so they are under me.

    Welcome to Apple Support Communities
    The easiest way is to put your files in /Users/Shared. To access to this folder, open a Finder window, select the Go menu (on the menu bar) > Go to Folder, and type that directory.
    That folder can be read by all users, so you won't have any problem to copy your files to the other user account.
    Another option would be to copy your files to an external drive. Also, see > https://discussions.apple.com/docs/DOC-5472

  • Help copying files from external drive to another external drive

    I'm trying to backup the files I have on an external drive and this has turned into ****, I feel I'm a Windows user all over again.
    First I tried to encrypt an external drive, just as I've encrypted several others. The solution was to pay for a new OS (10.8.2).
    Now I'm trying to drag/drop the files from the old external drive to the new one (Seagate 3TB) and I get this message:
    "The operation can’t be completed because the selection contains both backup items and non-backup items."
    In a discussion somebody said "Use SuperDuper". I downloaded it but it's an app to make exact backups. I don't want this, I just want to copy files just as I've done in years.
    If someone can help me, I'd like to know:
    1. What does that message mean? The selection was the files in the old drive. Both backup items and non-backup items?????
    2. How can I simply drag and drop the files as I've done all my life?
    * I DON'T WANT A BACKUP APP, I DON'T WANT TO BUY APPS FOR SOMETHING SO SIMPLE AS COPYING FILES, SOMETHING THAT A MAC SHOULD DO.
    Please advice.
    Thank you.

    Hi,
    in PowerShell copy is an alias to the Cmdlet Copy-Item. A parameter "NewOrNewer" does not exit. You have to create your script that meets of your needs.
    Have a look on the CmdLet Copy-Item
    http://technet.microsoft.com/en-us/library/hh849793.aspx    
    I hope that helps you.

Maybe you are looking for

  • Service Request Aging Analysis

    Hello All, I am trying to create a report in Siebel off the canned aging report. It seems to give me the average age in calendar days which is fine, however I need to report on number of business days. The data I need specifically is: Service Request

  • Overclocking Primer? i7 930 P6T SE

    I see lots of comments about overclocking, but I have no come across a link to a primer or basic how to.  I saw the comments on the quality of some i7's; I don't appear to be in the danger zone (manuactured March 2010).  But I need to get educated on

  • Firefox wont open and the task manager wont open as well

    My firefox wont open and when i try to fix it by managing profiles, it wont start up. when i try to go through the task manager it also wont start up. i dont know what i can do to fix this. ive tried uninstalling and installing tons of times. i just

  • How to identify runnings applications?

    Hi, I like to quit applications before shutdown. Where do I find the listing of runnings applications in 10.8.5? Thanks

  • PhotoShop CS3 Crashes on Vista

    Hello, I am using PhotoShop CS3 Extended along with MS Vista. for some reason when I open more then one image or file at a time, I recieve a message saying Photoshop has stopped working and then it closes out of Photoshop. Does anyone know why and if