markus / MarkusAutoUpdate / AppCompress / Program.cs @ master
이력 | 보기 | 이력해설 | 다운로드 (324 Bytes)
1 | d8f5045e | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.IO.Compression; |
||
4 | using System.Linq; |
||
5 | using System.Text; |
||
6 | using System.Threading.Tasks; |
||
7 | |||
8 | namespace AppCompress |
||
9 | { |
||
10 | class Program |
||
11 | { |
||
12 | static void Main(string[] args) |
||
13 | { |
||
14 | ZipFile.CreateFromDirectory(args[0], args[1]); |
||
15 | } |
||
16 | } |
||
17 | } |