 | MSCompressionWorkerUnZipArchiveFiles Methode |
Entpackt alles aus dem Archiv incl. Unterverzeichnis-Strukturen in einen gegebenen Ordner.
Namensraum: NetEti.FileTools.ZipAssembly: NetEti.ZipAccess (in NetEti.ZipAccess.dll) Version: 1.0.0+2996eef2bd6ad690f9f33134f6dd182957ec1b3e
Syntaxpublic void UnZipArchiveFiles(
string zipPathAndFile,
string outputFolder,
string? password,
bool deleteZipFile,
string[]? filePathes = null
)
Public Sub UnZipArchiveFiles (
zipPathAndFile As String,
outputFolder As String,
password As String,
deleteZipFile As Boolean,
Optional filePathes As String() = Nothing
)
public:
virtual void UnZipArchiveFiles(
String^ zipPathAndFile,
String^ outputFolder,
String^ password,
bool deleteZipFile,
array<String^>^ filePathes = nullptr
) sealed
abstract UnZipArchiveFiles :
zipPathAndFile : string *
outputFolder : string *
password : string *
deleteZipFile : bool *
?filePathes : string[]
(* Defaults:
let _filePathes = defaultArg filePathes null
*)
-> unit
override UnZipArchiveFiles :
zipPathAndFile : string *
outputFolder : string *
password : string *
deleteZipFile : bool *
?filePathes : string[]
(* Defaults:
let _filePathes = defaultArg filePathes null
*)
-> unit
Parameter
- zipPathAndFile String
- Pfad und Name des Archivs.
- outputFolder String
- Wohin entpackt werden soll.
- password String
- Passwort oder null.
- deleteZipFile Boolean
- Bei true wird das Archiv hinterher gelöscht.
- filePathes String (Optional)
- Liste der zu entpackenden Dateien (inklusive relative Pfade)
Siehe auch