반응형
C#에서 파일 압축 해제 방법은 다음과 같다.
using System;
using System.IO.Compression;
class Program
{
static void Main(string[] args)
{
string startPath = @".\start";
string zipPath = @".\result.zip";
string extractPath = @".\extract";
ZipFile.CreateFromDirectory(startPath, zipPath);
ZipFile.ExtractToDirectory(zipPath, extractPath);
}
}
반응형
'컴퓨터 > C#' 카테고리의 다른 글
[C#] Form 크기 고정 (0) | 2023.06.18 |
---|---|
[C#] 최근에 사용한 프로젝트 및 솔루션 개수 설정 (0) | 2023.06.17 |
C# 새 프로젝트 만들기 (0) | 2023.06.17 |
[C#] 프로그램 초기 설정 해제 (0) | 2023.06.05 |
[C#] String Format 사용법 (0) | 2023.05.22 |
댓글