Does the folder path contain any '!'? If yes, return true, otherwise false. (This is a problem for Java)
| 354 | // Does the folder path contain any '!'? If yes, return true, otherwise false. |
| 355 | // (This is a problem for Java) |
| 356 | bool checkProblemticPathJava(QDir folder) |
| 357 | { |
| 358 | QString pathfoldername = folder.absolutePath(); |
| 359 | return pathfoldername.contains("!", Qt::CaseInsensitive); |
| 360 | } |
| 361 | |
| 362 | QString getDesktopDir() |
| 363 | { |
no test coverage detected