This method compares two Cosmos directories and shows the size difference of the files in those directories.
Namespace: VcClientAssembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)
Syntax
C# |
---|
public static void DiffDir(
string sourceDir,
string destinationDir,
bool recursive
) |
Visual Basic |
---|
Public Shared Sub DiffDir ( _
sourceDir As String, _
destinationDir As String, _
recursive As Boolean _
) |
Visual C++ |
---|
public:
static void DiffDir(
String^ sourceDir,
String^ destinationDir,
bool recursive
) |
Parameters
- sourceDir
- Type: String
First directory path
- destinationDir
- Type: String
Second directory path
- recursive
- Type: Boolean
Specifying true will recursively diff the subfolders
See Also