Does the folder path contain any '!'? If yes, return true, otherwise false. (This is a problem for Java)
| 905 | // Does the folder path contain any '!'? If yes, return true, otherwise false. |
| 906 | // (This is a problem for Java) |
| 907 | bool checkProblemticPathJava(QDir folder) |
| 908 | { |
| 909 | QString pathfoldername = folder.absolutePath(); |
| 910 | return pathfoldername.contains("!", Qt::CaseInsensitive); |
| 911 | } |
| 912 | |
| 913 | QString getDesktopDir() |
| 914 | { |
no test coverage detected