| 255 | } |
| 256 | |
| 257 | Path DiskUtils::absolutePathFromString(const std::string_view& pathString) { |
| 258 | Path path(pathString); |
| 259 | if (!path.isAbsolute()) { |
| 260 | path = currentWorkingDirectory().appending(path); |
| 261 | } |
| 262 | |
| 263 | path.normalize(); |
| 264 | return path; |
| 265 | } |
| 266 | |
| 267 | } // namespace Valdi |
nothing calls this directly
no test coverage detected