 | ICSharpWorkerUnZipArchive method |
Unpacks everything from the archive including subdirectory structures.
Namespace: NetEti.FileTools.ZipAssembly: NetEti.ZipAccess (in NetEti.ZipAccess.dll) Version: 1.0.0+90532d84a01ea1dad6525ec1859a76670aba8306
Syntaxpublic void UnZipArchive(
string zipPathAndFile,
string outputFolder,
string? password,
bool deleteZipFile
)
Public Sub UnZipArchive (
zipPathAndFile As String,
outputFolder As String,
password As String,
deleteZipFile As Boolean
)
public:
virtual void UnZipArchive(
String^ zipPathAndFile,
String^ outputFolder,
String^ password,
bool deleteZipFile
) sealed
abstract UnZipArchive :
zipPathAndFile : string *
outputFolder : string *
password : string *
deleteZipFile : bool -> unit
override UnZipArchive :
zipPathAndFile : string *
outputFolder : string *
password : string *
deleteZipFile : bool -> unit Parameters
- zipPathAndFile String
- Path and name of the archive
- outputFolder String
- Where to unpack
- password String
- Password or null
- deleteZipFile Boolean
- whether the archive should be deleted afterwards
See also