I want to download zip file from _env.WebRootPath
And, I am using ionic.zip to create a zip file
Here I am trying to download zip file : -
(from f in new DirectoryInfo(path).GetFiles()
where f.LastAccessTime < DateTime.Now.Subtract(TimeSpan.FromSeconds(1))
select f
).ToList()
.ForEach(f => f.OpenRead());