使用 C# 计算 Zip 文件中的文件数量

发布于 2024-10-13 08:57:34 字数 178 浏览 3 评论 0原文

我正在生成一些 .csv 文件,并且需要将其压缩到 Zip 文件中。好吧,我有一个框架可以做到这一点,也许一切都会好起来的。

但!正如 TDD 所说,在进行一些测试之后,我就可以编写代码了!

我的第一个测试听起来很简单,但我在读取 Zip 文件时遇到一些问题,有人知道计算 zip 文件中文件数量的简单方法吗?

I'm generating some .csv files and I need to compress this inside a Zip File. Ok, I have a framework to do this and probably everything will be fine.

But! As TDD says I just can write code, after I have some tests!

My first test sound simple, but I'm having some problems reading the Zip file, anyone know a simple way to count the number of files in my zip file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

月野兔 2024-10-20 08:57:34

您似乎正在寻找类似 DotNetZip 的内容。

int count;
using (ZipFile zip = ZipFile.Read(path))
    count = zip.Count;

You seem to be looking for something like DotNetZip.

int count;
using (ZipFile zip = ZipFile.Read(path))
    count = zip.Count;
故事未完 2024-10-20 08:57:34

我不认为你问的是 TDD 问题,但无论如何我都会回答。

[Test]
public void countsNumberOfFilesInZip() {
  var counter = new FileCounter("existing_archive_with_2_files.zip");
  AssertEqual(2, counter.count());
}

现在,使用您选择的库,让 FileCounter 工作。一旦它工作并且通过了测试,如果您愿意,请重构代码,以便它使用模拟框架来模拟对 zip 库的调用。现在您不再依赖文件系统。 (我可能不会走这么远,除非你的测试因磁盘 I/O 减慢太多)

I don't think that was a TDD question you asked but I'll answer it anyway.

[Test]
public void countsNumberOfFilesInZip() {
  var counter = new FileCounter("existing_archive_with_2_files.zip");
  AssertEqual(2, counter.count());
}

Now, using the library of your choice, make FileCounter work. Once it works and you have a passing test, if you so choose, refactor the code so that it uses a mocking framework to mock out the calls to the zip library. Now you don't have a dependency on the file system. (I probably wouldn't go this far unless your tests are slowed down too much by the disk I/O)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文