일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- nullable
- algorithm
- dotNET
- C#
- commit
- Binding
- .net
- mysql
- git
- Coding
- coding-test
- programmers
- File
- Github
- csharp
- Process
- WPF
- string
- log
- ListView
- Microsoft
- IValueConverter
- logging
- chashtag
- windows10
- Visual Studio
- windows
- tls
- 코딩테스트
- convert
Archives
- Today
- Total
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 ZipDirectory(string directoryPath, string outputZipPath)
{
try
{
if (File.Exists(outputZipPath))
{
File.Delete(outputZipPath);
}
ZipFile.CreateFromDirectory(directoryPath, outputZipPath);
return true;
}
catch
{
return false;
}
}
public static bool UnzipFile(string zipPath, string unzipPath)
{
try
{
if(Directory.Exists(unzipPath))
{
Directory.Delete(unzipPath);
}
ZipFile.ExtractToDirectory(zipPath, unzipPath);
return true;
}
catch
{
return false;
}
}
만약 비밀번호와 함께 zip, unzip을 원하신다면 아래 링크를 확인해주세요.
https://chashtag.tistory.com/90
감사합니다.
반응형
'C#' 카테고리의 다른 글
[C#] Assembly 버전 정보 얻기, 버전 비교하기 (Compare Assembly Version) (함수 내부 동작원리) (0) | 2021.02.16 |
---|---|
[C#] 다른 프로세스가 파일 사용중인지 확인하기 (Check File Lock) (0) | 2021.02.08 |
[C#] 파일 읽기, 저장하기 (UTF8) (0) | 2021.01.26 |
[C#] 현재 메소드 이름 얻기 ( MethodBase.GetCurrentMethod() ) (0) | 2021.01.11 |
[ZOOM] [C#] [SDK] 2. C# Wrapper SDK 다운로드 & 프로젝트에 적용 (0) | 2020.11.21 |