 | SevenZipWorkerSevenUnzipAllArchives method |
Unpacks all ZIP archives from the zipsFolder directory into a
given directory into subdirectories with the names
of the respective archives.
Namespace: NetEti.FileTools.ZipAssembly: NetEti.ZipAccess (in NetEti.ZipAccess.dll) Version: 1.0.0+90532d84a01ea1dad6525ec1859a76670aba8306
Syntaxprotected Cunning<string> SevenUnzipAllArchives(
string zipsFolder,
string outputFolder,
string password,
bool moveZipFile,
string moveDir
)
Protected Function SevenUnzipAllArchives (
zipsFolder As String,
outputFolder As String,
password As String,
moveZipFile As Boolean,
moveDir As String
) As Cunning(Of String)
protected:
Cunning<String^>^ SevenUnzipAllArchives(
String^ zipsFolder,
String^ outputFolder,
String^ password,
bool moveZipFile,
String^ moveDir
)
member SevenUnzipAllArchives :
zipsFolder : string *
outputFolder : string *
password : string *
moveZipFile : bool *
moveDir : string -> Cunning<string> Parameters
- zipsFolder String
- The directory with the ZIP archives to be unpacked
- outputFolder String
- The target directory
- password String
- An optional shared password or null
- moveZipFile Boolean
- If true, the archive is moved to 'moveDir' after successful unpacking;
If 'moveDir' is empty or invalid, the ZIP archive will be deleted. - moveDir String
- A directory into which the archives are moved after unpacking.
Return value
CunningStringList of the new directories in the outputFolder with the unpacked files
See also