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

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

공개 메소드들

메소드 설명
Compress ( ) : void

Compress a given file into Tar archive.

Decompress ( ) : void

Decompress a Tar Archive.

TarManager ( string source, string target, TarCompressionLevel tarLevel, string password, bool recursive, bool removeSouce, bool overwriteTarget, LogLevel loglevel, IDTSComponentEvents componentEvents ) : ICSharpCode.SharpZipLib.BZip2

Initializes a new instance of the ZipManager class.

비공개 메소드들

메소드 설명
ArchiveFile ( Stream outStream, DirectoryInfo dir ) : void

Recurse through directory and place matching files into archive.

ExtractArchive ( Stream inStream ) : void

Extracts the archive.

Log ( string Message, LogLevel minLogLevel ) : void

Logs the specified message.

메소드 상세

Compress() 공개 메소드

Compress a given file into Tar archive.
public Compress ( ) : void
리턴 void

Decompress() 공개 메소드

Decompress a Tar Archive.
public Decompress ( ) : void
리턴 void

TarManager() 공개 메소드

Initializes a new instance of the ZipManager class.
public TarManager ( string source, string target, TarCompressionLevel tarLevel, string password, bool recursive, bool removeSouce, bool overwriteTarget, LogLevel loglevel, IDTSComponentEvents componentEvents ) : ICSharpCode.SharpZipLib.BZip2
source string The source.
target string The target.
tarLevel TarCompressionLevel
password string
recursive bool if set to true [recursive].
removeSouce bool if set to true [remove souce].
overwriteTarget bool if set to true [overwrite target].
loglevel LogLevel The loglevel.
componentEvents IDTSComponentEvents The component events.
리턴 ICSharpCode.SharpZipLib.BZip2