markus / MarkusAutoUpdate / AppCompress / Program.cs @ b2d0f316
이력 | 보기 | 이력해설 | 다운로드 (324 Bytes)
1 |
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 |
} |