markus / MarkusAutoUpdate / src / ExtractZip / Program.cs @ d8f5045e
이력 | 보기 | 이력해설 | 다운로드 (477 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.IO; |
4 |
using System.IO.Compression; |
5 |
using System.Linq; |
6 |
using System.Text; |
7 |
using System.Threading.Tasks; |
8 |
|
9 |
namespace ExtractZip |
10 |
{ |
11 |
class Program |
12 |
{ |
13 |
static void Main(string[] args) |
14 |
{ |
15 |
if(File.Exists(args[1])) |
16 |
{ |
17 |
File.Delete(args[1]); |
18 |
} |
19 |
|
20 |
ZipFile.CreateFromDirectory(args[0], args[1], CompressionLevel.Fastest, false); |
21 |
} |
22 |
} |
23 |
} |