compare_files_content() reads the content of a specified file from two
folders and compares the content using the waldo::compare function. It
identifies any differences in the content and returns the comparison results.
compare_files_content(filename, dir1, dir2)A list containing information about differences in the content of the specified file.
A character string specifying the name of the file to compare.
A character string specifying the path to the first folder.
A character string specifying the path to the second folder.
compare_files_content() reads the content of the specified file
from both folders using readLines(), and compares the content using the
waldo::compare() function.