📂 Incremental Archive Verifier A smart tool for verifying compressed file integrity with incremental checking
Incremental Verification - Only checks new/modified files Multi-format Support - 7z/ZIP/RAR/001/EXE (multi-part RAR aware) Encrypted File Detection - Auto-identify password-protected archives I18N Ready - Bilingual UI (English/中文) with auto-detection Graceful Interruption - Safe process termination with SIGINT handling State Tracking - JSON-based verification records
- Windows Only: Currently tested only on Windows systems
- Rust Rewrite: Planned translation to Rust for learning
- 7-Zip (
7z.exein PATH or specify path)
python ArchiveVerifier.py /path/to/your/directorypython ArchiveVerifier.py /scan/path \
--seven-zip "C:\Custom\Path\7z.exe" \
--exe \ # Include executable archive files
--lang en # Force English output \
--output ~/ # Set the output directory for results
--thread 20 # Number of verification threads (default: 1)python.exe .\ArchiveVerifier.py D:\test\ -e{
"target_directory": "D:\\test",
"files": {
"D:\\test\\archive1.7z": {
"result": "success",
"timestamp": 1662186157000000000
},
"D:\\test\\archive2.exe": {
"result": "success",
"timestamp": 1662181248000000000
},
"D:\\test\\archive3.7z": {
"result": "failure",
"timestamp": 1743493331033758600
},
"D:\\test\\archive4.7z": {
"result": "deleted",
"timestamp": 1662181197000000000
},
"D:\\test\\archive5.7z": {
"result": "success",
"timestamp": 1662181197000000000
}
}
}This project is licensed under Apache 2.0.
Copyright 2024 Your Name
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.