 | MSCompressionWorkerUnZipArchivesFiles method |
Unpacks everything from the archive including subdirectory structures into a given folder.
Namespace: NetEti.FileTools.ZipAssembly: NetEti.ZipAccess (in NetEti.ZipAccess.dll) Version: 1.0.0+90532d84a01ea1dad6525ec1859a76670aba8306
Syntaxpublic void UnZipArchiveFiles(
string zipPathAndFile,
string outputFolder,
string? password,
bool deleteZipFile,
string[]? filePaths = zero
)
Public Sub UnZipArchiveFiles (
zipPathAndFile As String,
outputFolder As String,
password As String,
deleteZipFile As Boolean,
Optional filePaths As String() = Nothing
)
public:
virtual void UnZipArchiveFiles(
String^ zipPathAndFile,
String^ outputFolder,
String^ password,
bool deleteZipFile,
array<String^>^ filePaths = nullptr
) sealed
abstract UnZipArchiveFiles :
zipPathAndFile : string *
outputFolder : string *
password : string *
deleteZipFile : bool *
?filePaths : string[]
(* Defaults:
let _filePaths = defaultArg filePaths zero
*)
-> unit
override UnZipArchiveFiles :
zipPathAndFile : string *
outputFolder : string *
password : string *
deleteZipFile : bool *
?filePaths : string[]
(* Defaults:
let _filePaths = defaultArg filePaths zero
*)
-> unit Parameters
- zipPathAndFile String
- Path and name of the archive.
- outputFolder String
- Where to unpack.
- password String
- Password or null.
- deleteZipFile Boolean
- If true, the archive is deleted afterwards.
- filePaths String (Optional)
- List of files to be unpacked (including relative paths)
See also