 | SevenZipWorkerUnzipAllArchives method |
Unpacks all ZIP archives from the zipsFolder directory into a
New subdirectory with the name of the archive in the outputFolder.
Namespace: NetEti.FileTools.ZipAssembly: NetEti.ZipAccess (in NetEti.ZipAccess.dll) Version: 1.0.0+90532d84a01ea1dad6525ec1859a76670aba8306
Syntaxpublic Cunning<string> UnzipAllArchives(
string zipsFolder,
string outputFolder,
string password,
bool moveZipFile,
string moveDir
)
Public Function UnzipAllArchives (
zipsFolder As String,
outputFolder As String,
password As String,
moveZipFile As Boolean,
moveDir As String
) As Cunning(Of String)
public:
virtual Cunning<String^>^ UnzipAllArchives(
String^ zipsFolder,
String^ outputFolder,
String^ password,
bool moveZipFile,
String^ moveDir
) sealed
abstract UnzipAllArchives :
zipsFolder : string *
outputFolder : string *
password : string *
moveZipFile : bool *
moveDir : string -> Cunning<string>
override UnzipAllArchives :
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