在 Windows 7 上比较 archiwum.rar 内容和从文件夹中的 .rar 中提取的数据
有谁知道如何比较 archiwum.rar 中的文件数量和文件大小及其在文件夹中提取的内容?
我想这样做的原因是我正在处理的服务器在提取过程中已重新启动几次,并且我不确定是否所有文件都已正确提取。
每个 .rar 文件都超过 100GB,而且服务器速度不是那么快。
有什么想法吗?
附注如果解决方案是一些代码而不是独立程序,我更喜欢 Python。
谢谢
Does anyone know how to compare amount of files and size of the files in archiwum.rar and its extracted content in the folder?
The reason I want to do this, is that server I'am working on has been restarted couple of times during extraction and I am not sure, if all the files has been extracted correctly.
.rar files are more then 100GB's each and server is not that fast.
Any ideas?
ps. if the solution would be some code instead standalone program, my preference is Python.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Python 中,您可以使用 RarFile 模块。用法与内置模块 ZipFile 类似。
In Python you can use RarFile module. The usage is similar to build-in module ZipFile.