| 140 | } |
| 141 | |
| 142 | std::vector<std::fs::path> DefaultPath::write() const |
| 143 | { |
| 144 | auto result = this->read(); |
| 145 | |
| 146 | std::erase_if(result, |
| 147 | [](const auto& entryPath) |
| 148 | { |
| 149 | return !hex::fs::isPathWritable(entryPath); |
| 150 | }); |
| 151 | |
| 152 | return result; |
| 153 | } |
| 154 | |
| 155 | std::vector<std::fs::path> ConfigPath::all() const |
| 156 | { |
no test coverage detected