backup method that can do this ->

msongs

New member
Member
VIP
Local time
1:02 AM
Messages
184
Location
riverside california USA
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:

My Computer

Computer Manufacturer/Model Number
build it myself
OS
windows 7 64bit
CPU
intel i7 920
Motherboard
gigabyte ex58 ds4
Memory
6gb ddr3
Graphics Card(s)
ge force 9400
Sound Card
onboard hd
Monitor(s) Displays
samsung 215tw
Screen Resolution
1680 x 1050
Hard Drives
wd caviar black 1 TB/620GB wd caviar blue
PSU
enermax 625 w modu82
Case
antec 182
Cooling
cooler master v8, 3 case fans
Keyboard
cheapo ps/2
Mouse
cheapo usb
Internet Speed
5 MB
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

Computer Manufacturer/Model Number
Self-Built in July 2009
OS
Windows 7 Ultimate x64
CPU
Intel Q9550 2.83Ghz OC'd to 3.40Ghz
Motherboard
Gigabyte GA-EP45-UD3R rev. 1.1, F12 BIOS
Memory
8GB G.Skill PI DDR2-800, 4-4-4-12 timings
Graphics Card(s)
EVGA 1280MB Nvidia GeForce GTX570
Sound Card
Realtek ALC899A 8 channel onboard audio
Monitor(s) Displays
23" Acer x233H
Screen Resolution
1920x1080
Hard Drives
Intel X25-M 80GB Gen 2 SSD
Western Digital 1TB Caviar Black, 32MB cache. WD1001FALS
PSU
Corsair 620HX modular
Case
Antec P182
Cooling
stock
Keyboard
ABS M1 Mechanical
Mouse
Logitech G9 Laser Mouse
Internet Speed
15/2 cable modem
Other Info
Windows and Linux enthusiast. Logitech G35 Headset.
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

OS
Windows 7
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

Computer Manufacturer/Model Number
Dell e6410
OS
Windows 7 Pro
CPU
Intel Core i5 M520 @ 240GHz
Memory
2 Gig
Graphics Card(s)
Intel Grap
Sound Card
Intel Graphics Media Accelerator HD
Monitor(s) Displays
Built in (LapTop)
Screen Resolution
1440x900
Hard Drives
250 Gig STAT
Mouse
Logitech Bluetooth
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

OS
Windows 7 Home Premium x64
CPU
Intel Core 2 Quad Q9450 @ 3.2GHz
Motherboard
Asus P5Q PRO Turbo
Memory
4GB DDR2-800
Graphics Card(s)
MSI Radeon HD 5850
Sound Card
Creative Labs Audigy2 ZS
Monitor(s) Displays
Samsung 225BW
Hard Drives
(2) 1TB Samsung F1, (2) 1.5TB Samsung F2, 1TB Samsung F2, 2TB Samsung F3
PSU
Corsair HX650
Case
Antec Nine Hundred
Back
Top