backup method that can do this ->


  1. Posts : 184
    windows 7 64bit
       #1

    way to backup newly created files only??


    I save files to an external hard drive for backup. Is there a program/way that will only backup new files from my computer that are not already on the backup drive? As in update newly added or changed files only instead of having to backup the entire my docs folders? thanks.
    Last edited by msongs; 20 Jul 2010 at 18:41. Reason: more informative title
      My Computer


  2. Posts : 7,878
    Windows 7 Ultimate x64
       #2

    Yes, look at Robocopy which is a command line tool, or Karen's File Replicator which has a GUI and accomplishes exactly what you want.
      My Computer


  3. Posts : 107
    Windows 7
       #3

    xxcopy with the right switches can beat everything else for speed.
    Something like this........

    xxcopy /s /d /Po0 "C:\Documents and Settings\MyName\My Documents\*.*" "e:\My Documents_bak"


    The /s switch copies subdirectories of the main one.
    The /d switch copies new files.
    The /Po0 switch suppresses prompts about file overwrites.

    Put the text into filename.bat using notepad, make a shortcut to this file to run. You could have multiple lines of commands for multiple folder backups.
      My Computer


  4. Posts : 30
    Windows 7 Pro
       #4

    Just to support sbrads recommendation.

    I use a .cmd batch file also to backup multiple folders to an external USB drive. The following is the lines from the file which you can copy into a .cmd file and save to your drive and then create a shortcut to it on your deskop (or anywhere else you like). Just change the to and from path statements. In my file I am going from the C drive to the E drive. In the from (left) path the *.* says every file.

    The switches do pretty much what sbrads outlined but you can check what they do by opening a command window and type "help xcopy" without the quotes

    Code:
    @echo .
    @echo .
    @echo .
    @echo .
    @echo Backing up TO External Hard Drive
    
    xcopy c:\Data\Personal\*.* e:\Data\Personal /e /y /d /h /r
    
    xcopy c:\Data\Reference\*.* e:\Data\Reference /e /y /d /h /r
    
    xcopy c:\Music\*.* e:\Music /e /y /d /h /r
    
    xcopy c:\software\*.* e:\software /e /y /d /h /r 
    
    pause
      My Computer


  5. Posts : 565
    Windows 7 Home Premium x64
       #5

    msongs said:
    I save files to an external hard drive for backup. Is there a program/way that will only backup new files from my computer that are not already on the backup drive? As in update newly added or changed files only instead of having to backup the entire my docs folders? thanks.
    The Backup and Restore in Windows 7 already has this capability.

    Here's an in depth review on how to use it: How To Use Backup and Restore in Windows 7 - How-To Geek
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 18:18.
Find Us