Summary
Deletes files from the archive.
(Command: d).
The builder is DeleteCommandBuilder
.
- Namespace
- Cake
.SevenZip .Commands - Interfaces
-
- IHaveArgumentArchive
- IHaveArgumentFiles
- I
Have Argument Directories - IHaveArgument
- ICommand
- I
Support Switch Include Filenames - I
Support Switch Exclude Filenames - I
Support Switch Compression Method - I
Support Switch Password - I
Support Switch Recurse Subdirectories - I
Support Switch Ntfs Alternate Streams - I
Support Switch Update Options - I
Support Switch Working Directory - I
Support Switch Self Extracting Archive - I
Support Switch Fully Qualified File Paths - ISupportSwitch
- Base Types
graph BT
Type-->Base0["BaseAddLikeSyntaxCommand"]
click Base0 "/Cake.7zip/api/Cake.SevenZip.Commands/BaseAddLikeSyntaxCommand"
Base0-->Base1["BaseCommand"]
click Base1 "/Cake.7zip/api/Cake.SevenZip.Commands/BaseCommand"
Base1-->Base2["object"]
Type-.->Interface0["IHaveArgumentArchive"]
click Interface0 "/Cake.7zip/api/Cake.SevenZip.Arguments/IHaveArgumentArchive"
Type-.->Interface1["IHaveArgumentFiles"]
click Interface1 "/Cake.7zip/api/Cake.SevenZip.Arguments/IHaveArgumentFiles"
Type-.->Interface2["IHaveArgumentDirectories"]
click Interface2 "/Cake.7zip/api/Cake.SevenZip.Arguments/IHaveArgumentDirectories"
Type-.->Interface3["IHaveArgument"]
click Interface3 "/Cake.7zip/api/Cake.SevenZip.Arguments/IHaveArgument"
Type-.->Interface4["ICommand"]
click Interface4 "/Cake.7zip/api/Cake.SevenZip.Commands/ICommand"
Type-.->Interface5["ISupportSwitchIncludeFilenames"]
click Interface5 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitchIncludeFilenames"
Type-.->Interface6["ISupportSwitchExcludeFilenames"]
click Interface6 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitchExcludeFilenames"
Type-.->Interface7["ISupportSwitchCompressionMethod"]
click Interface7 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitchCompressionMethod"
Type-.->Interface8["ISupportSwitchPassword"]
click Interface8 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitchPassword"
Type-.->Interface9["ISupportSwitchRecurseSubdirectories"]
click Interface9 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitchRecurseSubdirectories"
Type-.->Interface10["ISupportSwitchNtfsAlternateStreams"]
click Interface10 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitchNtfsAlternateStreams"
Type-.->Interface11["ISupportSwitchUpdateOptions"]
click Interface11 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitchUpdateOptions"
Type-.->Interface12["ISupportSwitchWorkingDirectory"]
click Interface12 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitchWorkingDirectory"
Type-.->Interface13["ISupportSwitchSelfExtractingArchive"]
click Interface13 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitchSelfExtractingArchive"
Type-.->Interface14["ISupportSwitchFullyQualifiedFilePaths"]
click Interface14 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitchFullyQualifiedFilePaths"
Type-.->Interface15["ISupportSwitch"]
click Interface15 "/Cake.7zip/api/Cake.SevenZip.Switches/ISupportSwitch"
Type["DeleteCommand"]
class Type type-node
Syntax
public sealed class DeleteCommand : BaseAddLikeSyntaxCommand, IHaveArgumentArchive,
IHaveArgumentFiles, IHaveArgumentDirectories, IHaveArgument, ICommand,
ISupportSwitchIncludeFilenames, ISupportSwitchExcludeFilenames,
ISupportSwitchCompressionMethod, ISupportSwitchPassword, ISupportSwitchRecurseSubdirectories,
ISupportSwitchNtfsAlternateStreams, ISupportSwitchUpdateOptions,
ISupportSwitchWorkingDirectory, ISupportSwitchSelfExtractingArchive,
ISupportSwitchFullyQualifiedFilePaths, ISupportSwitch
Properties
Name | Value | Summary |
---|---|---|
Archive | FilePath? |
Sets the archive the command operates on.
Inherited from Base
|
CommandChar | string |
Gets the command character. (e.g. "a", "u" or "e"...)
|
CommandName | string |
Gets the name of the command. (i.e. "add", "update" or "extract".)
|
CompressionMethod | Switch |
Gets or sets the compression method.
|
Directories | Directory |
Gets or sets the list of Directories the command operates on.
For add and update, adding a directory will add the directory itself to the root of the archive including everything in it. Inherited from Base
|
DirectoryContents | Directory |
Gets or sets the list of Directory-contents the command operates on.
For add and update, adding a directory this way will add the files of the directory to the root of the archive but not the directory itself. Inherited from Base
|
ExcludeFilenames | Switch |
Gets or sets the SwitchExcludeFilenameCollection.
|
Files | FilePathCollection? |
Gets or sets the list of files this command operates on.
These are single files. (I.e. to add to, or to remove from the archive).
For add and update, single files from the file-system will always be placed directly into the archive without any directory-structure. Setting Files like this in add/update:
Will result in an archive:
without any directory structure.
Inherited from Base
|
Fully |
Switch |
Gets or sets the SwitchFullyQualifiedFilePaths.
|
IncludeFilenames | Switch |
Gets or sets the SwitchIncludeFilenameCollection.
|
NtfsAlternateStreams | Switch |
Gets or sets the SwitchNtfsAlternateStreams.
|
Password | SwitchPassword? |
Gets or sets the SwitchPassword.
|
Recurse |
Switch |
Gets or sets the SwitchRecurseSubdirectories.
|
Self |
Switch |
Gets or sets the SwitchSelfExtractingArchive.
|
Switches | IEnumerable |
Gets all supported switches.
|
Throw |
bool |
Gets a value indicating whether to throw on missing input files.
|
UpdateOptions | SwitchUpdateOptions? |
Gets or sets the SwitchUpdateOptions.
|
WorkingDirectory | Switch |
Gets or sets the SwitchWorkingDirectory.
|
Methods
Name | Value | Summary |
---|---|---|
BuildArgumentParams |
void |
adds only the arguments to the builder. (i.e. Archive, files, directories).
Inherited from Base
|
BuildArguments |
void |
Builds the arguments.
Inherited from BaseCommand
|