This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://gdlp01.c-wss.com/gds/7/0200006477/01/dppw4.15.20-installer.zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a Python script. | |
#This python script compares files in two directories | |
# on their md5 hash. lists the files which have same md5, | |
# and the ones which don't. I use this to verify my file backups. | |
# The directory structures are different hence a direct folder | |
# comparison with tools like beyond compare (compare on contents) wont work. | |
import glob | |
import os | |
import hashlib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a Python script. | |
# Same as previous version except with thread worker | |
# for one particular run the previous script took 21 mins, while this one took 14 mins | |
# This python script compares files in two directories | |
# on their md5 hash. lists the files which have same md5, | |
# and the ones which don't. I use this to verify my file backups. | |
# The directory structures are different hence a direct folder | |
# comparison with tools like beyond compare (compare on contents) wont work. | |
import glob |
OlderNewer