Results 1 to 12 of 12

Thread: A little computer help??

  1. #1
    Join Date
    Jan 2006
    Location
    Mt. Pleasant, MI
    Posts
    2,924

    A little computer help??

    I am looking for a way to copy very large folders from one harddrive to another. Doing a complete copy through windows explorer is easy but it does not give an option to skip existing files that I am away of.

    Basically I have an internal hardrive that holds a couple very large picture and music folders. I have additions to those folders (pictures at least) weekly and want to have them both available on the desktop internal and the usb external that gets moved from computer to computer.

    Is there an easy way to do this without doing a complete copy each time? I only need it to check the files and add the missing ones.

    I figured some genius on here would have an answer.

    Thanks

    Joe
    JC Custom WoodWorks

    For best results, try not to do anything stupid.

    "So this is how liberty dies...with thunderous applause." - Padmé Amidala "Star Wars III: The Revenge of the Sith"

  2. #2
    When you select all and copy and paste you get a window that gives you

    options. Yes, Yes to All, etc.

    It does not give you No to All, but you can make it happen by holding the shift

    key down when you select 'No'

    I found it displays the window twice (had to click No both times), but if you

    are copying 100 files, say 80 are duplicates... twice is all you get.

    This was Windows XP, if you're running something else, just test it.

  3. Joe

    Can you use DOS or access a command window?

    If you go START / Run and then type cmd in the little window and press enter.

    That will open a DOS window.

    Now move to the directory the files to be copied are in

    chdir C:\bigfiles

    would move you to the directory bigfiles on the C drive. Now the xcopy command

    xcopy *.* E:\copy_bigfiles /D

    this will copy everything over if big_files is empty but once some files are there it will only copy files that are newer than those in E:\copy_bigfiles.

    If you need any help or want it turned into a batvh job that you can run from an icon on the desktop PM me.

    Regards

  4. #4
    in xp , there is a backup program ..or restore program .
    i just choose the 'let me choose ' box and back up my music and pics ...

  5. #5
    Join Date
    Feb 2003
    Location
    Doylestown, PA
    Posts
    7,579
    Joe, if I understand you correctly, you want to synchronize two directories. When I used Windows mostly I used to use this a lot. It's a far superior file manager to Windows Explorer IMO and it has file synchronization among its other talents.
    http://www.avanquest.com/USA/softwar...6?rs2=AQ_US_BN. There's a trialware version floating around-powerdesk6- which kind of gives a feel for the program but it's crippled and one of the things that doesn't work is file synchronization. And it doesn't work in Vista or 7, just XP & earlier.

  6. #6
    Join Date
    Dec 2009
    Location
    Hill Country Texas
    Posts
    941
    You need some kind of syncronization application (I'd recommend peersync but I think its kind of expensive). I think you can do what your want just using ntbackup though. Set it up to do scheduled incremental backups and just to copy the files rather than compress or archive them. I believe Windows 7 has file syncing capabilities built in. You can use the built in task scheduler to schedule copies/syncs or schedule running Robocopy, Teracopy or something similar.

  7. #7
    Join Date
    Jun 2009
    Location
    Victoria, BC
    Posts
    2,367
    try syncback. really easy, and works great.
    Paul

  8. #8
    Join Date
    Nov 2003
    Location
    Katy, Texas
    Posts
    243
    Microsoft SyncToy is useful for synchronizing folders between drives or even pc to pc.

    If you are looking for a file manager type program, try Total Commander, found here: www.ghisler.com The file copy/move routine provides several options including skipping existing files with the same date stamp. It has many other useful features too.

  9. #9
    Join Date
    Feb 2003
    Location
    Mtl, Canada
    Posts
    2,379
    Quote Originally Posted by paul cottingham View Post
    try syncback. really easy, and works great.
    +1 on syncback free edition. works well, easy to use and does incremental backups.

  10. #10
    Join Date
    Feb 2003
    Location
    Doylestown, PA
    Posts
    7,579
    Quote Originally Posted by Chuck Wintle View Post
    +1 on syncback free edition. works well, easy to use and does incremental backups.
    I forgot about syncback. That does indeed work well.

  11. #11
    Join Date
    Mar 2003
    Location
    Monroe, MI
    Posts
    11,896
    I use this command to back up our photos, music, etc:

    xcopy /s /e /v /c /d /y [source folder]\* [dest folder]

    s means copy sub directories except empty ones (I really don't need this but its habit.)
    e means copy sub directories including empty ones
    v means verify the data after copy
    c means continue if an error occurs (i.e. a locked file won't block it from finishing the rest)
    d means everything where the source is newer than the destination
    y means answer yes to any overwrite prompts

    so you could do something like
    xcopy /s /e /v /c /d /y "c:\Joes Photos\*" "e:\Joes Photos Backup\"
    and only new or newly-modified files will copy


  12. #12
    Join Date
    Oct 2007
    Location
    Arlington, VA
    Posts
    1,850
    +1 for synctoy. I think it may be included in the free MS powertoys or maybe a separate download. Simple and it works. You can actually schedule it to run on periodic basis.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •