Copies the file time from one file to another
| 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) { |
| 876 | ddio_CopyFileTime(dest, src); |
| 877 | } |
| 878 | |
| 879 | // Changes a files attributes (ie read/write only) |
| 880 | void cf_ChangeFileAttributes(const char *name, int attr) { |
no test coverage detected