ZipArchiverBuild(String, String) Method
Compresses the specified source file or diretory into a Zip archive using the default compression parameters.
Namespace: DevCase.ThirdParty.DotNetZipAssembly: DevCase.net48.ThirdParty.DotNetZip (in DevCase.net48.ThirdParty.DotNetZip.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public string Build(
string sourceFileOrDir,
string outputFilepath
)
Public Function Build (
sourceFileOrDir As String,
outputFilepath As String
) As String
Dim instance As ZipArchiver
Dim sourceFileOrDir As String
Dim outputFilepath As String
Dim returnValue As String
returnValue = instance.Build(sourceFileOrDir,
outputFilepath)
public:
String^ Build(
String^ sourceFileOrDir,
String^ outputFilepath
)
member Build :
sourceFileOrDir : string *
outputFilepath : string -> string
No code example is currently available or this language may not be supported.
- sourceFileOrDir String
-
The source file or diretory.
- outputFilepath String
-
The path of the output file to create.
String
The full path of the resulting Zip archive.
FileNotFoundException
|
Source file or directory not found.
|