UtilFileCompare(String, String) Method
Compares two files byte by byte to determine if they are equals.
Namespace: DevCase.Core.IO.FileSystemAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static bool Compare(
string fileA,
string fileB
)
Public Shared Function Compare (
fileA As String,
fileB As String
) As Boolean
Dim fileA As String
Dim fileB As String
Dim returnValue As Boolean
returnValue = UtilFile.Compare(fileA,
fileB)
public:
static bool Compare(
String^ fileA,
String^ fileB
)
static member Compare :
fileA : string *
fileB : string -> bool
No code example is currently available or this language may not be supported.
- fileA String
-
The first file.
- fileB String
-
The second file.
Boolean if files are equals,
otherwise.
This is a code example.
No code example is currently available or this language may not be supported.
Dim equals As Boolean = Compare("C:\File1.ext", "C:\file2.ext")
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.