Unzippa il file passato nella cartella desiderata.
Namespace: DedNet.CoreAssembly: DedNet (in DedNet.dll) Versione: 26.4.0.0 (26.4.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 String
- File da Unzippare.
- targetDir String
- Cartella di destinazione.
- showProgressBar Boolean (Optional)
- Imposta la visualizzazione della barra
- stepperMethod ActionInt32 (Optional)
- Delegate che permette la gestione di una progressione esterna
Vedi anche