Unzippa il file passato nella cartella desiderata.
Namespace:
DedNet.Core
Assembly:
DedNet (in DedNet.dll) Versione: 23.3.0.0 (23.3.0.0)
Sintassi public static void UnZip(
string zippedFile,
string targetDir,
bool showProgressBar = true,
Action<int> stepperMethod = null
)
Public Shared Sub UnZip (
zippedFile As String,
targetDir As String,
Optional showProgressBar As Boolean = true,
Optional stepperMethod As Action(Of Integer) = Nothing
)
public:
static void UnZip(
String^ zippedFile,
String^ targetDir,
bool showProgressBar = true,
Action<int>^ stepperMethod = nullptr
)
static member UnZip :
zippedFile : string *
targetDir : string *
?showProgressBar : bool *
?stepperMethod : Action<int>
(* Defaults:
let _showProgressBar = defaultArg showProgressBar true
let _stepperMethod = defaultArg stepperMethod null
*)
-> unit
Parametri
- zippedFile
- Tipo: SystemString
File da Unzippare. - targetDir
- Tipo: SystemString
Cartella di destinazione. - showProgressBar (Optional)
- Tipo: SystemBoolean
Imposta la visualizzazione della barra - stepperMethod (Optional)
- Tipo: SystemActionInt32
Delegate che permette la gestione di una progressione esterna
Vedi anche