'Declaration Public Overloads Shared Sub Tar( _ ByVal tarFileName As String, _ ByVal compressTar As Boolean, _ ByVal ParamArray filesToTar() As String _ )
'Usage Dim tarFileName As String Dim compressTar As Boolean Dim filesToTar() As String QuickTar.Tar(tarFileName, compressTar, filesToTar)
public static void Tar( string tarFileName, bool compressTar, params string[] filesToTar )
Parameters
- tarFileName
- The full path of the Tar archive. Cannot be empty.
- compressTar
- Boolean value indicating whether the Tar archive should be compressed into a GZip file named "tarFileName".gz.
- filesToTar
- The list of file paths to add to the Tar archive. Must contain at least one file.