Skip to content

Functions: Z

1 functions (1 overloads) on BasicRuntime.Functions starting with Z.

A B C D E F G H I K L M N O P Q R S T U W X Z

ZIP

1 overload

static bool Functions.ZIP(string pathToSource, string pathToZipFile)

Performs the zip operation using the supplied pathToSource, pathToZipFile.

Kind Method (static)
Returns bool
Use case Call Functions.ZIP(...) directly (no instance required) when your code needs to perform the zip operation using the supplied pathToSource, pathToZipFile.
How this member is tested

Act: var result = Functions.ZIP("sample", "sample")
Assert: result matches the expected true/false outcome.

Expected: Returns true or false, indicating the outcome of the zip check for the given input.