| 25 | |
| 26 | namespace { |
| 27 | QString removeTrailingSlashes(QString dirPath) |
| 28 | { |
| 29 | while (!dirPath.isEmpty() && std::as_const(dirPath).back() == QLatin1Char{'/'}) { |
| 30 | dirPath.chop(1); |
| 31 | } |
| 32 | return dirPath; |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Is the file at @p filePath in the directory at @p dirPath within a maximum depth of @p maxDepth? |
no test coverage detected