C# Class SSIS.Extensions.ZipTask.ZipManager

Afficher le fichier Open project: ElanHasson/SSIS-Extensions Class Usage Examples

Méthodes publiques

Méthode Description
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.

Private Methods

Méthode Description
Log ( string Message, LogLevel minLogLevel ) : void

Logs the specified message.

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

Zips the file.

Method Details

UnZip() public méthode

Unzips the specified source.
public UnZip ( ) : void
Résultat void

Zip() public méthode

Zips the specified source (File or Directory).
public Zip ( ) : void
Résultat void

ZipManager() public méthode

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.
Résultat ICSharpCode.SharpZipLib.Core