Click or drag to resize

ICSharpWorkerUnzipAllArchives 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.Zip
Assembly: NetEti.ZipAccess (in NetEti.ZipAccess.dll) Version: 1.0.0+90532d84a01ea1dad6525ec1859a76670aba8306
Syntax
public Cunning<string> UnzipAllArchives(
	
	string zipsFolder,
	
	string outputFolder,
	
	string password,
	
	bool moveZipFile,
	
	string moveDir
)

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

CunningString
List of the new directories in the outputFolder with the unpacked files
See also