1

my process needs to create a zip file with a large number of files(that are also created by the process). Instead of having to create temporary files, zipping them and then deleting, can I directly add files into a zip file?

Aks
  • 5,188
  • 12
  • 60
  • 101

1 Answers1

2

Yes, you can. But the performance of it will be poor compared to direct file creation. Anyway, SharpDevelop Wiki has examples.

tafa
  • 7,146
  • 3
  • 36
  • 40