Metodo UtilityZip (String, String, Boolean, ActionInt32)
|
Permette di zippare una cartella. Crea un archivio del contenuto della cartella.
Namespace:
DedNet.Core
Assembly:
DedNet (in DedNet.dll) Versione: 23.3.0.0 (23.3.0.0)
Sintassi public static void Zip(
string destFile,
string sourcePath,
bool showProgressBar = true,
Action<int> stepperMethod = null
)
Public Shared Sub Zip (
destFile As String,
sourcePath As String,
Optional showProgressBar As Boolean = true,
Optional stepperMethod As Action(Of Integer) = Nothing
)
public:
static void Zip(
String^ destFile,
String^ sourcePath,
bool showProgressBar = true,
Action<int>^ stepperMethod = nullptr
)
static member Zip :
destFile : string *
sourcePath : string *
?showProgressBar : bool *
?stepperMethod : Action<int>
(* Defaults:
let _showProgressBar = defaultArg showProgressBar true
let _stepperMethod = defaultArg stepperMethod null
*)
-> unit
Parametri
- destFile
- Tipo: SystemString
File .zip di destinazione - sourcePath
- Tipo: SystemString
Cartella sorgente - showProgressBar (Optional)
- Tipo: SystemBoolean
Controlla la visibilità della progressione - stepperMethod (Optional)
- Tipo: SystemActionInt32
Delegate chiamato in fase di iterazione per gestione progressione esterna
Vedi anche