Which free tool would you recommend? (file backups/copies) ALREADY SOLVED THANK YOU ALL!
-
Hello all, After asking here about a good tool to make some file copying, I've received wonderful answers from a lot of members here. At the end I've chosen Robocopy as [@Gary R. Wheeler](/Members/Gary R. Wheeler) has suggested. Thank you again Gary and thank you all for your posts, they are really interesting! ================================================================================ At our house computer (Windows 7) we have an USB external hard disk which is used to copy our documents and important files and have them in another physical disk (you know: just in case). Nowadays what I'm doing is something like: delete the second disk completely and then copying everything again to the second one. X| X| X| I hate doing that and I'm sure any method under the sun will be better. Now my question is: I would like to get something lightweight, that could be programmed to work each week or so and that would ensure that all the data would be updated on the backup folder. I’m not worried on the deleted files: if we delete one file we want it that way so it should be deleted also in the “backup”. What tool would you recommend, which configuration would you recommend and why? Thank you in advance! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
-
Hello all, After asking here about a good tool to make some file copying, I've received wonderful answers from a lot of members here. At the end I've chosen Robocopy as [@Gary R. Wheeler](/Members/Gary R. Wheeler) has suggested. Thank you again Gary and thank you all for your posts, they are really interesting! ================================================================================ At our house computer (Windows 7) we have an USB external hard disk which is used to copy our documents and important files and have them in another physical disk (you know: just in case). Nowadays what I'm doing is something like: delete the second disk completely and then copying everything again to the second one. X| X| X| I hate doing that and I'm sure any method under the sun will be better. Now my question is: I would like to get something lightweight, that could be programmed to work each week or so and that would ensure that all the data would be updated on the backup folder. I’m not worried on the deleted files: if we delete one file we want it that way so it should be deleted also in the “backup”. What tool would you recommend, which configuration would you recommend and why? Thank you in advance! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
c#, system.IO, Windows service SMACK ouch. I use windows backup but it is not what you are looking for. I don't know of any backup system that will remove deleted files from the repository. Sort of defeats the purpose of backup me thinks!
Never underestimate the power of human stupidity RAH
-
Hello all, After asking here about a good tool to make some file copying, I've received wonderful answers from a lot of members here. At the end I've chosen Robocopy as [@Gary R. Wheeler](/Members/Gary R. Wheeler) has suggested. Thank you again Gary and thank you all for your posts, they are really interesting! ================================================================================ At our house computer (Windows 7) we have an USB external hard disk which is used to copy our documents and important files and have them in another physical disk (you know: just in case). Nowadays what I'm doing is something like: delete the second disk completely and then copying everything again to the second one. X| X| X| I hate doing that and I'm sure any method under the sun will be better. Now my question is: I would like to get something lightweight, that could be programmed to work each week or so and that would ensure that all the data would be updated on the backup folder. I’m not worried on the deleted files: if we delete one file we want it that way so it should be deleted also in the “backup”. What tool would you recommend, which configuration would you recommend and why? Thank you in advance! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
Try
robocopy
, part of the Windows Server 2003 Resource Kit: http://www.microsoft.com/en-us/download/details.aspx?id=17657[^]. The /MIR option 'mirrors' the source to the destination, replacing files that are newer, deleting files that no longer exist, and so on.Software Zen:
delete this;
-
Hello all, After asking here about a good tool to make some file copying, I've received wonderful answers from a lot of members here. At the end I've chosen Robocopy as [@Gary R. Wheeler](/Members/Gary R. Wheeler) has suggested. Thank you again Gary and thank you all for your posts, they are really interesting! ================================================================================ At our house computer (Windows 7) we have an USB external hard disk which is used to copy our documents and important files and have them in another physical disk (you know: just in case). Nowadays what I'm doing is something like: delete the second disk completely and then copying everything again to the second one. X| X| X| I hate doing that and I'm sure any method under the sun will be better. Now my question is: I would like to get something lightweight, that could be programmed to work each week or so and that would ensure that all the data would be updated on the backup folder. I’m not worried on the deleted files: if we delete one file we want it that way so it should be deleted also in the “backup”. What tool would you recommend, which configuration would you recommend and why? Thank you in advance! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
Try SyncToy[^] - MS Freebie. It does what it says on the tin - I have set it up for a couple of friends as a "fire and forget" solution for sharing pictures from two lappies with a NAS box.
This message is manufactured from fully recyclable noughts and ones. To recycle this message, please separate into two tidy piles, and take them to your nearest local recycling centre. Please note that in some areas noughts are always replaced with zeros by law, and many facilities cannot recycle zeroes - in this case, please bury them in your back garden and water frequently.
-
Hello all, After asking here about a good tool to make some file copying, I've received wonderful answers from a lot of members here. At the end I've chosen Robocopy as [@Gary R. Wheeler](/Members/Gary R. Wheeler) has suggested. Thank you again Gary and thank you all for your posts, they are really interesting! ================================================================================ At our house computer (Windows 7) we have an USB external hard disk which is used to copy our documents and important files and have them in another physical disk (you know: just in case). Nowadays what I'm doing is something like: delete the second disk completely and then copying everything again to the second one. X| X| X| I hate doing that and I'm sure any method under the sun will be better. Now my question is: I would like to get something lightweight, that could be programmed to work each week or so and that would ensure that all the data would be updated on the backup folder. I’m not worried on the deleted files: if we delete one file we want it that way so it should be deleted also in the “backup”. What tool would you recommend, which configuration would you recommend and why? Thank you in advance! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
FreeFileSync http://sourceforge.net/projects/freefilesync/[^] is very good. Can be used to sync two folders, or to mirror one folder to another. It's similar to SyncToy mentioned by others, but has the advantage that it uses Volume Shadow Copy to copy files in use, which SyncToy does not (I believe). The "preview" window allows you to see what files will be copied and make changes if needed. Or you can run it in batch mode. One disadvantage of FreeFileSync is that it uses the SourceForge installer, so during install you have to look for and turn off the option to install some other piece of crap-ware.
-
Try
robocopy
, part of the Windows Server 2003 Resource Kit: http://www.microsoft.com/en-us/download/details.aspx?id=17657[^]. The /MIR option 'mirrors' the source to the destination, replacing files that are newer, deleting files that no longer exist, and so on.Software Zen:
delete this;
So if the files are not newer it is not recopying them? That sounds good. :thumbsup: I've seen that it seems that robocopy doesn't handle the file permissions in a good way if you are using the /MIR option. Anyway that is not important to me as it's for the computer at home.
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
-
Try SyncToy[^] - MS Freebie. It does what it says on the tin - I have set it up for a couple of friends as a "fire and forget" solution for sharing pictures from two lappies with a NAS box.
This message is manufactured from fully recyclable noughts and ones. To recycle this message, please separate into two tidy piles, and take them to your nearest local recycling centre. Please note that in some areas noughts are always replaced with zeros by law, and many facilities cannot recycle zeroes - in this case, please bury them in your back garden and water frequently.
Looks good! I've read in the Internet that this software is leaving small files around... is that right? in case of being right, are they placed in one specific folder or in all the folders that are being created? have you noticed that? Is that right? If that would be right probably I would go for the Robocopy option as I don't mind permissions (home computer) and it seems to simply copy the files. I would prefer using the tool you are suggesting as it looks really good and moreover I could put more sources and destinations at once which would allow me to execute the "backup" operation once and receive all the results at the end... With robocopy I would need to scroll up along all the copied files to see what happened or execute the backup in different stages... :~
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
-
So if the files are not newer it is not recopying them? That sounds good. :thumbsup: I've seen that it seems that robocopy doesn't handle the file permissions in a good way if you are using the /MIR option. Anyway that is not important to me as it's for the computer at home.
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
Nope. It's pretty smart about it. I use it on my development machine and both of my build servers. The primary mirrors itself to the secondary, and the secondary mirrors critical data to an external hard drive. Even though we're talking about several terabytes of data, most of it is static. The original copy operations took a long time when I was setting this up (a couple of days, actually), but the automated nightly operation usually takes less than an hour and only has to copy/delete a few gigabytes.
Software Zen:
delete this;
-
Looks good! I've read in the Internet that this software is leaving small files around... is that right? in case of being right, are they placed in one specific folder or in all the folders that are being created? have you noticed that? Is that right? If that would be right probably I would go for the Robocopy option as I don't mind permissions (home computer) and it seems to simply copy the files. I would prefer using the tool you are suggesting as it looks really good and moreover I could put more sources and destinations at once which would allow me to execute the "backup" operation once and receive all the results at the end... With robocopy I would need to scroll up along all the copied files to see what happened or execute the backup in different stages... :~
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
I'm not sure - I don't routinely trawl through my friends image files, you never know what you might find X| - and I don't use it myself (I don't want files deleted automatically, so I use NTI Shadow to keep multiple copies). I know it keeps an "eye" on files (and "tags" them so it can tell if it was there but was deleted and so forth) but I don't know if this is on a folder basis or if it uses a single db file in the root. Sorry!
This message is manufactured from fully recyclable noughts and ones. To recycle this message, please separate into two tidy piles, and take them to your nearest local recycling centre. Please note that in some areas noughts are always replaced with zeros by law, and many facilities cannot recycle zeroes - in this case, please bury them in your back garden and water frequently.
-
I'm not sure - I don't routinely trawl through my friends image files, you never know what you might find X| - and I don't use it myself (I don't want files deleted automatically, so I use NTI Shadow to keep multiple copies). I know it keeps an "eye" on files (and "tags" them so it can tell if it was there but was deleted and so forth) but I don't know if this is on a folder basis or if it uses a single db file in the root. Sorry!
This message is manufactured from fully recyclable noughts and ones. To recycle this message, please separate into two tidy piles, and take them to your nearest local recycling centre. Please note that in some areas noughts are always replaced with zeros by law, and many facilities cannot recycle zeroes - in this case, please bury them in your back garden and water frequently.
OriginalGriff wrote:
you never know what you might find X|
Ways of blacklisting blackmailing friends... :rolleyes:
OriginalGriff wrote:
Sorry
Not in any way, I'll try it by myself, thank you! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
-
OriginalGriff wrote:
you never know what you might find X|
Ways of blacklisting blackmailing friends... :rolleyes:
OriginalGriff wrote:
Sorry
Not in any way, I'll try it by myself, thank you! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
With some of my friends, blackmail is more likely than blacklist! :laugh:
This message is manufactured from fully recyclable noughts and ones. To recycle this message, please separate into two tidy piles, and take them to your nearest local recycling centre. Please note that in some areas noughts are always replaced with zeros by law, and many facilities cannot recycle zeroes - in this case, please bury them in your back garden and water frequently.
-
Nope. It's pretty smart about it. I use it on my development machine and both of my build servers. The primary mirrors itself to the secondary, and the secondary mirrors critical data to an external hard drive. Even though we're talking about several terabytes of data, most of it is static. The original copy operations took a long time when I was setting this up (a couple of days, actually), but the automated nightly operation usually takes less than an hour and only has to copy/delete a few gigabytes.
Software Zen:
delete this;
Yes it is Smart... it Works wonderfully. I've ended up with /MIR /XJ. XJ seems to exclude junctions... Important if you are copying My music, My documents and so... it seesm those folders have DIRECTORIES and JUNCTIONS... and the latest make the copy operation to fail. Thank you for your hint! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
-
With some of my friends, blackmail is more likely than blacklist! :laugh:
This message is manufactured from fully recyclable noughts and ones. To recycle this message, please separate into two tidy piles, and take them to your nearest local recycling centre. Please note that in some areas noughts are always replaced with zeros by law, and many facilities cannot recycle zeroes - in this case, please bury them in your back garden and water frequently.
Who has spoken of blacklisting? :rolleyes:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
-
Who has spoken of blacklisting? :rolleyes:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
:laugh: We need an :InnocentWhistleSmiley: ...
This message is manufactured from fully recyclable noughts and ones. To recycle this message, please separate into two tidy piles, and take them to your nearest local recycling centre. Please note that in some areas noughts are always replaced with zeros by law, and many facilities cannot recycle zeroes - in this case, please bury them in your back garden and water frequently.
-
Yes it is Smart... it Works wonderfully. I've ended up with /MIR /XJ. XJ seems to exclude junctions... Important if you are copying My music, My documents and so... it seesm those folders have DIRECTORIES and JUNCTIONS... and the latest make the copy operation to fail. Thank you for your hint! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
I have been using Robocopy for years and really have had no trouble with it. I run it from a scheduled batch file with a series of entries for each drive/directory combination I need. I back up 7x2TB drives to another 7x2TB drives each night using /MIR /XO to only copy updated files - sometimes it only takes a few minutes. I hadn't thought of using /XJ, it might save me some space and time on one of the backups.
- I would love to change the world, but they won’t give me the source code.
-
Hello all, After asking here about a good tool to make some file copying, I've received wonderful answers from a lot of members here. At the end I've chosen Robocopy as [@Gary R. Wheeler](/Members/Gary R. Wheeler) has suggested. Thank you again Gary and thank you all for your posts, they are really interesting! ================================================================================ At our house computer (Windows 7) we have an USB external hard disk which is used to copy our documents and important files and have them in another physical disk (you know: just in case). Nowadays what I'm doing is something like: delete the second disk completely and then copying everything again to the second one. X| X| X| I hate doing that and I'm sure any method under the sun will be better. Now my question is: I would like to get something lightweight, that could be programmed to work each week or so and that would ensure that all the data would be updated on the backup folder. I’m not worried on the deleted files: if we delete one file we want it that way so it should be deleted also in the “backup”. What tool would you recommend, which configuration would you recommend and why? Thank you in advance! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
Terracopy.
-
Hello all, After asking here about a good tool to make some file copying, I've received wonderful answers from a lot of members here. At the end I've chosen Robocopy as [@Gary R. Wheeler](/Members/Gary R. Wheeler) has suggested. Thank you again Gary and thank you all for your posts, they are really interesting! ================================================================================ At our house computer (Windows 7) we have an USB external hard disk which is used to copy our documents and important files and have them in another physical disk (you know: just in case). Nowadays what I'm doing is something like: delete the second disk completely and then copying everything again to the second one. X| X| X| I hate doing that and I'm sure any method under the sun will be better. Now my question is: I would like to get something lightweight, that could be programmed to work each week or so and that would ensure that all the data would be updated on the backup folder. I’m not worried on the deleted files: if we delete one file we want it that way so it should be deleted also in the “backup”. What tool would you recommend, which configuration would you recommend and why? Thank you in advance! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
I have used Comodo Backup[^] in the past, and it worked just fine. It has very nice feature set.
Remind Me This - Manage, Collaborate and Execute your Project in the Cloud
-
Hello all, After asking here about a good tool to make some file copying, I've received wonderful answers from a lot of members here. At the end I've chosen Robocopy as [@Gary R. Wheeler](/Members/Gary R. Wheeler) has suggested. Thank you again Gary and thank you all for your posts, they are really interesting! ================================================================================ At our house computer (Windows 7) we have an USB external hard disk which is used to copy our documents and important files and have them in another physical disk (you know: just in case). Nowadays what I'm doing is something like: delete the second disk completely and then copying everything again to the second one. X| X| X| I hate doing that and I'm sure any method under the sun will be better. Now my question is: I would like to get something lightweight, that could be programmed to work each week or so and that would ensure that all the data would be updated on the backup folder. I’m not worried on the deleted files: if we delete one file we want it that way so it should be deleted also in the “backup”. What tool would you recommend, which configuration would you recommend and why? Thank you in advance! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
I wrote this[^] more than 10 years ago - it's pretty basic (no scheduling :( ) but may be of help in a pinch. A full-feature one is in the works, but it will be a few months before it's available. /ravi
My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com
-
Hello all, After asking here about a good tool to make some file copying, I've received wonderful answers from a lot of members here. At the end I've chosen Robocopy as [@Gary R. Wheeler](/Members/Gary R. Wheeler) has suggested. Thank you again Gary and thank you all for your posts, they are really interesting! ================================================================================ At our house computer (Windows 7) we have an USB external hard disk which is used to copy our documents and important files and have them in another physical disk (you know: just in case). Nowadays what I'm doing is something like: delete the second disk completely and then copying everything again to the second one. X| X| X| I hate doing that and I'm sure any method under the sun will be better. Now my question is: I would like to get something lightweight, that could be programmed to work each week or so and that would ensure that all the data would be updated on the backup folder. I’m not worried on the deleted files: if we delete one file we want it that way so it should be deleted also in the “backup”. What tool would you recommend, which configuration would you recommend and why? Thank you in advance! :thumbsup:
[www.tamautomation.com] Robots, CNC and PLC machines for grinding and polishing.
I gave up with external drives for backup. I use http://www.drobox.com[^] and I'm very happy with it. I had a couple of crashes recently and got all my data back very easily. Plus I can access my documents from anywhere. :)
-
I gave up with external drives for backup. I use http://www.drobox.com[^] and I'm very happy with it. I had a couple of crashes recently and got all my data back very easily. Plus I can access my documents from anywhere. :)
do you mean dropbox.com?
Steve _________________ I C(++) therefore I am