Asp.net – Can not open the zip file that zipped by C#
I'm writing a web app ,it can upload/download files, here is my code about download files(just for test): static void Main(string[] args) { var zipName = $"archive-{DateTime.Now:yyyy_MM_dd-HH_mm_ss}.zip"; var folder = "D:\xxdd"; using var memoryStream = new MemoryStream(); using var zipArchive…