| 160 | } |
| 161 | |
| 162 | bool Content::copy(String src, String dst) { |
| 163 | PROFILE("FileIO"_slice); |
| 164 | bool result = false; |
| 165 | _thread->runInMainSync([&]() { |
| 166 | result = Content::copyUnsafe(src, dst); |
| 167 | }); |
| 168 | return result; |
| 169 | } |
| 170 | |
| 171 | bool Content::move(String src, String dst) { |
| 172 | std::error_code err; |
no test coverage detected