You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem Statement:
Create a Python script to simulate an optimized file transfer system that compares the checksum of files between two directories and only transfers files that have changed. The goal is to avoid transferring unchanged files to optimize network and disk usage.
Requirements:
File Hashing:
Compute the checksum (SHA-256) for each file in the source and destination directories.
Transfer Condition:
If a file in the source directory has a different hash than its counterpart in the destination directory (or is missing), it should be transferred.
Handling Errors:
Gracefully handle cases where files do not exist in either directory.
Please assign this problem to me under HacktoberFest 2024
The text was updated successfully, but these errors were encountered:
Problem Statement:
Create a Python script to simulate an optimized file transfer system that compares the checksum of files between two directories and only transfers files that have changed. The goal is to avoid transferring unchanged files to optimize network and disk usage.
Requirements:
Compute the checksum (SHA-256) for each file in the source and destination directories.
If a file in the source directory has a different hash than its counterpart in the destination directory (or is missing), it should be transferred.
Gracefully handle cases where files do not exist in either directory.
Please assign this problem to me under HacktoberFest 2024
The text was updated successfully, but these errors were encountered: