| 522 | QFileInfoList drives = QDir::drives(); |
| 523 | |
| 524 | Q_FOREACH(const QFileInfo &drive, drives) { |
| 525 | // for drives, there is no filename |
| 526 | QString driveName = drive.canonicalPath(); |
| 527 | QString uncPath = mapPathWithDriveLetterToPathWithNetworkShareName(driveName); |
| 528 | |
| 529 | #ifdef DEBUG |
| 530 | qDebug() << "Filesystem: " << driveName << " = " << uncPath; |
| 531 | #endif |
| 532 | } |
| 533 | } |
| 534 | |
| 535 | QString |
nothing calls this directly
no test coverage detected