计算未压缩 PST/OST/邮件容器的估计值
我正在编写一个程序,尝试估计所有逻辑文件的“分解”大小。问题是存在(可能)压缩容器,如 .ZIP、.PST/.OST 等。
我想知道如果我们要“分解”它们(提取其中的所有内容)并估计处理邮件容器的最佳方法所有未压缩内容的大小(.MSG 文件等)。
最好避免将它们提取到 TMP 目录中,但如果这是唯一的方法,那就这样吧。
I'm writing a program that tries to estimate "exploded" size of all logical files. The issue being there are (possibly) compressed containers like .ZIP, .PST/.OST, etc.
I was wondering for the best way to approach mail containers if we were to "explode" them (extract all the contents within) and estimate the size all the uncompressed contents would be (.MSG files, etc).
It would be nice to avoid having to extract them into a TMP directory, but if that's the only way it can be done then so be it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Zip 文件包含原始文件的大小......因此像 dotnetzip 库这样的东西可以帮助您处理这些文件。
Zip files contain the size of the original files.. so something like dotnetzip library could help you with those files.