| 127 | { |
| 128 | |
| 129 | std::vector<std::fs::path> DefaultPath::read() const |
| 130 | { |
| 131 | auto result = this->all(); |
| 132 | |
| 133 | std::erase_if(result, |
| 134 | [](const auto& entryPath) |
| 135 | { |
| 136 | return !wolv::io::fs::isDirectory(entryPath); |
| 137 | }); |
| 138 | |
| 139 | return result; |
| 140 | } |
| 141 | |
| 142 | std::vector<std::fs::path> DefaultPath::write() const |
| 143 | { |
no test coverage detected