C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,905 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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());