C# 클래스 NArrange.Core.ZipUtilities

Utility methods for zipping and unzipping files.
파일 보기 프로젝트 열기: MarcStan/NArrange 1 사용 예제들

공개 메소드들

메소드 설명
Unzip ( string zipFileName, string targetDirectory ) : void

Unzips the specified zip file to the destination directory.

Zip ( string sourceDirectory, string zipFileName ) : void

Writes the specified directory to a new zip file.

메소드 상세

Unzip() 공개 정적인 메소드

Unzips the specified zip file to the destination directory.
public static Unzip ( string zipFileName, string targetDirectory ) : void
zipFileName string Zip file name.
targetDirectory string Target extraction directory.
리턴 void

Zip() 공개 정적인 메소드

Writes the specified directory to a new zip file.
public static Zip ( string sourceDirectory, string zipFileName ) : void
sourceDirectory string Directory with files to add.
zipFileName string Output file name.
리턴 void