Questions tagged «md5sum»


15
如何计算目录的md5校验和?
我需要为*.py放置在目录和所有子目录下的特定类型(例如)的所有文件计算md5校验摘要。 最好的方法是什么? 编辑:提出的解决方案非常好,但这并不是我所需要的。我正在寻找一种解决方案,以获取单个摘要校验和,该校验和将唯一标识整个目录-包括其所有子目录的内容。
133 linux  directory  md5sum 



3
如何在Python中计算文件的MD5校验和?
我已经在Python中编写了一个代码,用于检查文件中的MD5,并确保MD5与原始文件匹配。 这是我开发的: #Defines filename filename = "file.exe" #Gets MD5 from file def getmd5(filename): return m.hexdigest() md5 = dict() for fname in filename: md5[fname] = getmd5(fname) #If statement for alerting the user whether the checksum passed or failed if md5 == '>md5 will go here<': print("MD5 Checksum passed. You may now …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.