How to download all files in a directory in ASP.NET using C#
I am currently learning uploading / downloading / deleting files in C# asp.net. I figured out how to delete every file in a folder with code like this: protected void DeleteAllFiles(object sender, EventArgs e) { System.IO.DirectoryInfo di = new DirectoryInfo(Server.MapPath("~/Output"));…