Implement a program that synchronizes two folders: source and replica. The program should maintain a full, identical copy of the source folder in the replica folder.
- Python
- C#
- Synchronization must be one-way: after synchronization, the content of the replica folder should be modified to exactly match the content of the source folder.
- Synchronization should be performed periodically.
- File creation/copying/removal operations should be logged to a file and to the console output.
- Folder paths, synchronization interval, and log file path should be provided using command line arguments.
- It is undesirable to use third-party libraries that implement folder synchronization.
- It is allowed (and recommended) to use external libraries implementing other well-known algorithms. For example, there is no point in implementing yet another function that calculates MD5 if you need it for the task – it is perfectly acceptable to use a third-party (or built-in) library;
The solution should be presented as a link to a public GitHub repository.
- Avoid implementing common algorithms (like MD5 calculation) from scratch. Use built-in or well-established third-party libraries for such functionalities.
- Focus on implementing the core synchronization logic and command-line interface.
- Ensure proper error handling and logging throughout the program.
To run the Folder Synchronization Script, use the following command:
python main.py -s <source_directory> -r <replica_directory> -l <log_directory> -i <interval_in_seconds>
python main.py -s C:\source -r C:\replica -l C:\logs -i 120
-s, --source: Path to the source directory.
-r, --replica: Path to the replica directory.
-l, --log_file: Path to the log directory.
-i, --interval: Synchronization interval in seconds.