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.

Similar Messages

  • 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.

  • 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)

  • 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

  • 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.
    ¯\_(ツ)_/¯

  • Help copying files from iTunes to external hard drive

    I have a bunch of music files (about 15,000 of them) that I want to back up to an external hard drive. They are only files of a certain bit rate, so I can't just locate them in a particular folder and copy them; I need to sort them in iTunes and copy them from there. I tried to highlight all of them and just copy them, but I got the spinning wheel for a couple minutes and then the operation stopped. I then figured out that I could transfer about 1,000 at a time -- I got the tracks by bands starting with A, then B, then C, to transfer. But now I am stuck. When I try to transfer files now, when I highlight them in iTunes, the window showing the destination folder on the external hard drive disappears, and I can't transfer them. Before, it seemed like both windows were active, but now they are not. Anyone know the solution to this?

    The Windows drive is probably formatted NTFS which is not natively writable
    by the Mac. It should be formatted as FAT32 to be usable on both.
    Dave

  • Permissions problem when copying files from external hard drive

    Hi.
    I have recently reinstalled leopard (wiped the hard drive clean) on my macbook pro. (10.5.4). I had used Time Machine so I have a complete backup. But I only wanted a few of the files so I didn't do a backup restore. I went into the file directory of the backup on my external hard drive and dragged the folders I wanted back over to my laptop.
    But I'm in permissions **** though! When I want to copy them over I get an alert saying you may not have privilege to do this and asks for my password. I enter my password and it copies fine. But every time I want to do anything with those files (like move them, or delete them) I have to re enter a password.
    So, inside of the terminal I do a "ls -al" command to see whats going on and find that everything is the same as a natively created folder except for a '@' on the permissions column. I do a "ls -al@' to see more details and I get this:
    drwxr-xr-x@ 6 xenition staff 204 Jul 20 17:08 Assets
    com.apple.metadata:_kTimeMachineNewestSnapshot 50
    com.apple.metadata:_kTimeMachineOldestSnapshot 50
    I did run repair permissions from Disk Utility and it didn't solve it. How can I resolve the permissions on these files?
    Message was edited by: risingtiger

    run ls -aleO on the copied files and see if there are any ACLs or flags.
    BTW, another (and possibly better) way to restore files from an old TM drive is via TM interface. control-click on TM in the dock and choose "browse other TM disks" select a disk to browse and go at it. when you try to restore something you'll be prompted for a location to restore it to and maybe a password.

  • Unable to copy file from local drive to external drive

    I'm attempting to copy a 7gb file from my local drive on my iMac to an external firewire drive. Whenever I try to do this I get the following message: Sorry, the operation could not be completed because an unexpected error occurred.
    I've rebooted, checked permissions on local and external drive. I'm the only person that uses this iMac. It only has one profile on it. Any suggestions?

    Hello Sikwidityo
    If that External HD is formatted MS-DOS FAT32, then there is a 4GB file size limit that the iMac's can write to it.
    See > http://www.macworld.com/article/51972/2006/07/ww_drives.html
    In order to copy large files to it you from your Intel iMac's, you will need to set the Partition Map Scheme to GUID Partition Table and Format it Mac OS Extended (Journaled)
    See > http://www.kenstone.net/fcphomepage/partitioningtiger.html
    Keep in mind that repartitioning and reformatting will erase the current data on the External drive. So if you do, you'll need to copy it's contents to one of your iMac's and then back when your done.
    Dennis

  • Copied files from external drive, now "read only" on Mac HDD

    I recently moved a large amount of files from my old PC to my new Mac. I copied the files from WinXP to a USB hard drive, then connected the drive to my Mac. After I copied all the files to the Mac I noticed that the majority of them are set with permissions that say "You can only read this file". How do I take ownership of these files so I can delete/rename some of them?
    Thanks!

    Select your file and open the information panel. By owner and access, change the permission.

  • Error copying files from flash drive

    I'm not entirely sure this is a Windows compatibility problem, but it seems plausible. We have an external USB drive that is used to carry files back and forth between home, where we have a MacBook, and my husband's job, where he has a Windows machine. He has had a problem on several occasions copying files between the external drive and the hard drive. If he copies an entire folder, the copy will sometimes throw an error and then abort the copy process. This then results in anything that previously existed in the target folder and didn't get copied being completely wiped out (instead of them just being left there).
    I was able to replicate this behavior for the local copy of the files that are now on our hard drive, just trying to copy to another folder on the hard drive. The error message I saw was a "File in Use" error on a file that was definitely not open in any application, and then the aborted copy process (and the complete erasure of any files that previously were there). It was intermittent: I had a successful copy-and-paste of the folder once, and another that displayed the error behavior.
    Other info:
    I can copy using "cp -r" on the command line, this only happens with the Finder.
    The file that I saw the "File in Use" error on has an extended attribute set (I noticed this due to the "@" sign at the end of the permissions). When I look at it, it is a com.apple.FinderInfo attribute but I don't know what the values/fields mean.
    The files all show the username & group name from the Windows system my husband uses at work (we haven't set any groups at home -- the files show "staff" as the group so I presume this is from the Windows system).
    Some of the files were originally created on the Windows machine, others originally on the Mac machine.
    The external hard drive is formatted as MS-DOS (FAT32).
    I'm thinking there is some permissions issue between the Mac attributes and the Windows attributes that is causing the copy to fail (ungracefully) but that's a theory and I don't know how to fix it. Thanks for the help.

    I never did figure out why the files wouldn't copy over. Eventually, I deleted them and reformatted the drive. I don't know if that "fixed" anything, and I have not tried to copy such large files from the Mac to drive or vice-versa, but the drive seems to be fine. So, the problem and the solution remain a mystery!

  • 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

  • Copy file from C drive to my network drive

    Hello to All,
    I am trying to copy some files from my C drive to the Network i.e. M drive.
    Using Oracle forms 10g AS on a UNIX box.
    This code works fine:
    :blk_global_items.file_load_from := 'c:\temp\0310011.ffs';
    :blk_global_items.file_load_to := 'C:\temp\logs\0310011.ffs';
    IF NOT webutil_file_transfer.client_to_as(
         clientFile => :blk_global_items.file_load_from,
         serverFile => :blk_global_items.file_load_to,
         asynchronous => TRUE,
         callbacktrigger => null) THEN
         message('Upload was not successfull');
    ELSE
         message('Upload was successfull');
    END IF;
    But not this code:
    :blk_global_items.file_load_from := 'c:\temp\0310011.ffs';
    :blk_global_items.file_load_to := 'M:\group\osc\0310011.ffs';
    IF NOT webutil_file_transfer.client_to_as(
         clientFile => :blk_global_items.file_load_from,
         serverFile => :blk_global_items.file_load_to,
         asynchronous => TRUE,
         callbacktrigger => null) THEN
         message('Upload was not successfull');
    ELSE
         message('Upload was successfull');
    END IF;
    I highly appreciate any suggestions.
    Habeeb

    Hi Jan
    The question that comes to my mind is to ask if this project is actually open in Captivate while you are trying to do this. My thought is that if it's still open, perhaps Captivate has a connection and something about the process of copying the file is causing something in the process to gag.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Cannot copy file (From external HD, DVD, server) - iTunes 6

    Yesterday I've updated iTune to 6 and de facto Quicktime to 7.0.3.
    Just after this upgrade, I remark that I cannot copy files, using the finder, from external hard disk, dvd drive and network drive. During the drag, I've got the circle indicating that I can't copy.
    I can copy files only from my main hard disk to this one or others.
    (Note: With terminal applications I can copy theses files).
    Anyone else have this problems... or a explanation/solution.
    Thanks

    I reinstall iTune 6 and now everything is ok

Maybe you are looking for