This function compares the contents of two files located at specified paths and determines their synchronization status based on their content
compare_file_contents(
path_left,
path_right,
verbose = getOption("syncdr.verbose")
)A list containing the following components:
Logical. Indicates whether the contents of the two files are different (TRUE)
or identical (FALSE).
Character. Describes the synchronization status between the two files based on their content: - "different content": Contents of the files are not identical. - "same content": Contents of the files are identical.
A character string specifying the path to the file in the left directory.
A character string specifying the path to the file in the right directory.
logical; if TRUE display progress status of hashing files' contents, in seconds. Default is FALSE