UtilFileCompare(FileInfo, FileInfo) 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(
FileInfo fileA,
FileInfo fileB
)
Public Shared Function Compare (
fileA As FileInfo,
fileB As FileInfo
) As Boolean
Dim fileA As FileInfo
Dim fileB As FileInfo
Dim returnValue As Boolean
returnValue = UtilFile.Compare(fileA,
fileB)
public:
static bool Compare(
FileInfo^ fileA,
FileInfo^ fileB
)
static member Compare :
fileA : FileInfo *
fileB : FileInfo -> bool
No code example is currently available or this language may not be supported.
- fileA FileInfo
-
The first file.
- fileB FileInfo
-
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.