Checks to see if two files are different. Returns TRUE if the files are different, or FALSE if they are the same.
| 870 | // Checks to see if two files are different. |
| 871 | // Returns TRUE if the files are different, or FALSE if they are the same. |
| 872 | bool cf_Diff(const std::filesystem::path &a, const std::filesystem::path &b) { return (ddio_FileDiff(a, b)); } |
| 873 | |
| 874 | // Copies the file time from one file to another |
| 875 | void cf_CopyFileTime(const std::filesystem::path &dest, const std::filesystem::path &src) { |
no test coverage detected