This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.7zip.
Summary
Builder for
ExtractCommand
.
- Assembly
- Cake
.7zip .dll - Namespace
- Cake
.SevenZip .Builder - Interfaces
-
- I
Support Argument Builder <IHaveArgumentArchive> - I
Support Switch Builder <I Support >Switch Archive Type - I
Support Switch Builder <I Support >Switch Compression Method - I
Support Switch Builder <I Support >Switch Password - I
Support Switch Builder <I Support >Switch Nt Security Information - I
Support Switch Builder <I Support >Switch Ntfs Alternate Streams - I
Support Switch Builder <I Support >Switch Recurse Subdirectories - I
Support Switch Builder <I Support >Switch Include Filenames - I
Support Switch Builder <I Support >Switch Exclude Filenames - I
Support Switch Builder <I Support >Switch Include Archive Filenames - I
Support Switch Builder <I Support >Switch Exclude Archive Filenames - I
Support Switch Builder <I Support >Switch Disable Parsing Of Archive Name - I
Support Switch Builder <I Support >Switch Overwrite Mode - I
Support Switch Builder <I Support >Switch Output Directory - I
Support Switch Builder <I Support >Switch Fully Qualified File Paths
- I
- Base Types
-
- Object
graph BT
Type-->Base0["Object"]
Type-.->Interface0["ISupportArgumentBuilder<IHaveArgumentArchive>"]
Type-.->Interface1["ISupportSwitchBuilder<ISupportSwitchArchiveType>"]
Type-.->Interface2["ISupportSwitchBuilder<ISupportSwitchCompressionMethod>"]
Type-.->Interface3["ISupportSwitchBuilder<ISupportSwitchPassword>"]
Type-.->Interface4["ISupportSwitchBuilder<ISupportSwitchNtSecurityInformation>"]
Type-.->Interface5["ISupportSwitchBuilder<ISupportSwitchNtfsAlternateStreams>"]
Type-.->Interface6["ISupportSwitchBuilder<ISupportSwitchRecurseSubdirectories>"]
Type-.->Interface7["ISupportSwitchBuilder<ISupportSwitchIncludeFilenames>"]
Type-.->Interface8["ISupportSwitchBuilder<ISupportSwitchExcludeFilenames>"]
Type-.->Interface9["ISupportSwitchBuilder<ISupportSwitchIncludeArchiveFilenames>"]
Type-.->Interface10["ISupportSwitchBuilder<ISupportSwitchExcludeArchiveFilenames>"]
Type-.->Interface11["ISupportSwitchBuilder<ISupportSwitchDisableParsingOfArchiveName>"]
Type-.->Interface12["ISupportSwitchBuilder<ISupportSwitchOverwriteMode>"]
Type-.->Interface13["ISupportSwitchBuilder<ISupportSwitchOutputDirectory>"]
Type-.->Interface14["ISupportSwitchBuilder<ISupportSwitchFullyQualifiedFilePaths>"]
Type["ExtractCommandBuilder"]
class Type type-node
Syntax
public sealed class ExtractCommandBuilder : ISupportArgumentBuilder<IHaveArgumentArchive>,
ISupportSwitchBuilder<ISupportSwitchArchiveType>,
ISupportSwitchBuilder<ISupportSwitchCompressionMethod>,
ISupportSwitchBuilder<ISupportSwitchPassword>,
ISupportSwitchBuilder<ISupportSwitchNtSecurityInformation>,
ISupportSwitchBuilder<ISupportSwitchNtfsAlternateStreams>,
ISupportSwitchBuilder<ISupportSwitchRecurseSubdirectories>,
ISupportSwitchBuilder<ISupportSwitchIncludeFilenames>,
ISupportSwitchBuilder<ISupportSwitchExcludeFilenames>,
ISupportSwitchBuilder<ISupportSwitchIncludeArchiveFilenames>,
ISupportSwitchBuilder<ISupportSwitchExcludeArchiveFilenames>,
ISupportSwitchBuilder<ISupportSwitchDisableParsingOfArchiveName>,
ISupportSwitchBuilder<ISupportSwitchOverwriteMode>,
ISupportSwitchBuilder<ISupportSwitchOutputDirectory>,
ISupportSwitchBuilder<ISupportSwitchFullyQualifiedFilePaths>
Examples
Task("UnzipIt")
.Does(() =>
{
SevenZip(m => m
.InExtractMode()
.WithArchive(File("path/to/file.zip"))
.WithArchiveType(SwitchArchiveType.Zip)
.WithOutputDirectory("some/other/directory"));
});
Task("UnzipVolumes")
.Does(() =>
{
SevenZip(m => m
.InExtractMode()
.WithArchive(File("path/to/file.7z.001"))
.WithArchiveType(SwitchArchiveType.SevenZip.Volumes())
.WithOutputDirectory("some/other/directory"));
});
Attributes
Type | Description |
---|---|
Nullable |
|
NullableAttribute |
Methods
Name | Value | Summary |
---|---|---|
With |
Extract |
Sets UseFullPaths to true on the
ExtractCommand .
|
Without |
Extract |
Sets UseFullPaths to false on the
ExtractCommand .
(copies all extracted files to one directory).
|
Extension Methods
Name | Value | Summary |
---|---|---|
Dump |
string |
Get a basic string representation of specified object.
From LoggingExtensions
Requires the Cake.Incubator addin
|
IsIn |
bool |
Checks if the source is contained in a list
From EnumerableExtensions
Requires the Cake.Incubator addin
|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From Extensions
Requires the Cake.Ftp addin
|
NotNull |
void |
From IssuesArgumentChecks
Requires the Cake.Issues addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ToDictionary |
IDictionary |
From ObjectHelpers
Requires the Cake.DeployParams addin
|
To |
string |
From StringExtensions
Requires the Cake.Issues addin
|