C# 클래스 SSIS.Extensions.ZipTask.ZipManager

파일 보기 프로젝트 열기: ElanHasson/SSIS-Extensions 1 사용 예제들

공개 메소드들

메소드 설명
UnZip ( ) : void

Unzips the specified source.

Zip ( ) : void

Zips the specified source (File or Directory).

ZipManager ( string source, string target, ZipCompressionLevel zipLevel, string password, bool recursive, string fileFilter, bool removeSouce, bool overwriteTarget, LogLevel logLevel, IDTSComponentEvents componentEvents ) : ICSharpCode.SharpZipLib.Core

Initializes a new instance of the ZipManager class.

비공개 메소드들

메소드 설명
Log ( string Message, LogLevel minLogLevel ) : void

Logs the specified message.

zipFile ( ZipOutputStream zipStream, DirectoryInfo baseDir, FileInfo inputFile ) : void

Zips the file.

메소드 상세

UnZip() 공개 메소드

Unzips the specified source.
public UnZip ( ) : void
리턴 void

Zip() 공개 메소드

Zips the specified source (File or Directory).
public Zip ( ) : void
리턴 void

ZipManager() 공개 메소드

Initializes a new instance of the ZipManager class.
public ZipManager ( string source, string target, ZipCompressionLevel zipLevel, string password, bool recursive, string fileFilter, bool removeSouce, bool overwriteTarget, LogLevel logLevel, IDTSComponentEvents componentEvents ) : ICSharpCode.SharpZipLib.Core
source string The source.
target string The target.
zipLevel ZipCompressionLevel The zip level.
password string
recursive bool if set to true [recursive].
fileFilter string
removeSouce bool if set to true [remove souce].
overwriteTarget bool if set to true [overwrite target].
logLevel LogLevel
componentEvents IDTSComponentEvents The component events.
리턴 ICSharpCode.SharpZipLib.Core