Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| // <snippet1> | |
| using System; | |
| using System.IO; | |
| using System.IO.Compression; | |
| namespace ConsoleApplication | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string startPath = @"c:\example\start"; | |
| string zipPath = @"c:\example\result.zip"; | |
| string extractPath = @"c:\example\extract"; | |
| ZipFile.CreateFromDirectory(startPath, zipPath); | |
| ZipFile.ExtractToDirectory(zipPath, extractPath); | |
| } | |
| } | |
| } | |
| // </snippet1> |