일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- convert
- nullable
- programmers
- csharp
- log
- File
- commit
- Github
- coding-test
- Visual Studio
- C#
- 코딩테스트
- Microsoft
- git
- tls
- Process
- .net
- WPF
- windows
- algorithm
- logging
- ListView
- dotNET
- windows10
- Coding
- IValueConverter
- Binding
- string
- chashtag
- mysql
Archives
- Today
- Total
목록filesystem (1)
CHashtag
[C#] 압축, 압축 풀기 (zip, unzip)
오늘은 폴더를 zip 파일로, zip 파일을 폴더로 만드는 방법에 대해 알아보겠습니다. 아래 코드를 구현하기 위해선 System.IO.Compression.FileSystem을 Reference에 추가하여야 합니다. static void Main(string[] args) { string directoryPath = @"D:\Record"; string zipPath = @"D:\Record.zip"; string unzipPath = @"D:\UnzipRecord"; bool zipResult = ZipDirectory(directoryPath, zipPath); bool unzipResult = UnzipFile(zipPath, unzipPath); } public static bool ZipDire..
C#
2021. 2. 5. 00:35