ZipArchiverBuildSfx(String, String) Method
Compresses the specified source file or diretory into a self-extracting archive (SFX) 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 BuildSfx(
string sourceFileOrDir,
string outputFilepath
)
Public Function BuildSfx (
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.BuildSfx(sourceFileOrDir,
outputFilepath)
public:
String^ BuildSfx(
String^ sourceFileOrDir,
String^ outputFilepath
)
member BuildSfx :
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 SFX file to create.
String
The full path of the resulting SFX file.
FileNotFoundException
|
Source file or directory not found.
|