Performs a binary comparison on two files.
C#
bCompare = CompareBinaryFiles (lhs, rhs);
VB
bCompare = CompareBinaryFiles (lhs, rhs)
Variable | Description |
---|---|
bCompare | True if the contents of the files are equal, false otherwise. Boolean. |
lhs | The path to the first file. Can be either an absolute path or a path relative to the current working directory. String. |
rhs | The path to the second file. Can be either an absolute path or a path relative to the current working directory. String. |