Does the folder path contain any '!'? If yes, return true, otherwise false. (This is a problem for Java)
| 883 | // Does the folder path contain any '!'? If yes, return true, otherwise false. |
| 884 | // (This is a problem for Java) |
| 885 | bool checkProblemticPathJava(QDir folder) |
| 886 | { |
| 887 | QString pathfoldername = folder.absolutePath(); |
| 888 | return pathfoldername.contains("!", Qt::CaseInsensitive); |
| 889 | } |
| 890 | |
| 891 | QString getDesktopDir() |
| 892 | { |
no test coverage detected