---------------------------------------------------------------------------
| 119 | |
| 120 | //--------------------------------------------------------------------------- |
| 121 | bool emptyDir(const std::string &name) |
| 122 | { |
| 123 | if (!dirExists(name)) return false; |
| 124 | return fs::is_empty(fs::path(name)); |
| 125 | } |
| 126 | |
| 127 | //--------------------------------------------------------------------------- |
| 128 | bool copyFile(const std::string &source, const std::string &target, bool overwrite, bool copyAttributes) |
no test coverage detected