| 163 | } |
| 164 | |
| 165 | rdcstr ConfigFilePath(const rdcstr &filename) |
| 166 | { |
| 167 | QString path = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); |
| 168 | |
| 169 | QDir dir(path); |
| 170 | if(!dir.exists()) |
| 171 | dir.mkdir(lit(".")); |
| 172 | |
| 173 | return QDir::cleanPath(dir.absoluteFilePath(filename)); |
| 174 | } |
no test coverage detected