Answer the question
In order to leave comments, you need to log in
Manual backup tool?
The essence of the problem: sometimes you need to make backups of several directories from drive A to drive B. It is planned to start it manually. the task is not to constantly overwrite the entire amount of data, since disks A and B contain actual data that does not need to be copied again (normal copying can also cope with this), but what it can’t cope with is deleting invalid data on drive B that is no longer on drive A.
Answer the question
In order to leave comments, you need to log in
try SyncToy https://www.microsoft.com/en-us/download/details.a...
Unfortunately, you did not write for which system it is needed, but I would follow the principle (using PowerShell if possible):
1. Get a list of files from drive A;
2. We got a list of files from disk B;
3. Array with file names B - A = unnecessary files into a new array C;
4. Delete objects from disk B according to the list of array C.
Or take any backup system and make normal backups (having previously made a backup plan) of two types, full and incremental / differential at your discretion. Schedule and keep copies. And you will always have up-to-date information in a copy.
Built-in Windows utility:
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
Начало: Fri Jun 03 13:12:14 2016
Простое использование :: ROBOCOPY источник назначение /MIR
Источник:: Исходная папка (диск:\путь или \\сервер\общий ресурс\путь).
Назначение :: Папка назначения (диск:\путь или \\сервер\общий ресурс\путь).
/MIR :: Создать зеркало всего дерева папок.
Для получения информации об использовании выполните команду ROBOCOPY /?
**** /MIR может не только скопировать файлы, но и УДАЛИТЬ их!
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question