| 321 | } |
| 322 | |
| 323 | String File::absolutePath(const String& file) |
| 324 | { |
| 325 | QFileInfo fi(file.toQString()); |
| 326 | return fi.absoluteFilePath(); |
| 327 | } |
| 328 | |
| 329 | String File::basename(const String& file) |
| 330 | { // using well-defined overflow of unsigned ints here if path separator is not found |
no test coverage detected