Class FileOverwriteEventArgs
EventArgs for FileExists event, stores the file name and asks whether to overwrite it in case it already exists.
Inherited Members
Namespace: SharpSevenZip.EventArguments
Assembly: SharpSevenZip.dll
Syntax
public sealed class FileOverwriteEventArgs : EventArgs
Constructors
| Edit this page View SourceFileOverwriteEventArgs(string)
Initializes a new instance of the FileOverwriteEventArgs class
Declaration
public FileOverwriteEventArgs(string fileName)
Parameters
Type | Name | Description |
---|---|---|
string | fileName | The file name. |
Properties
| Edit this page View SourceCancel
Gets or sets the value indicating whether to cancel the extraction.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
bool |
FileName
Gets or sets the file name to extract to. Null means skip.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
string |