Вопрос

Qt file API classes handle network folder paths correctly on Windows. But I can’t find a way to enumerate network root (list of network drives and computers available). Is there any way to do that without using WinAPI but only Qt classes?

Это было полезно?

Решение

I am afraid, the best you can get is QStorageInfo from QtSystems.

allLogicalDrives : const QStringList

This property holds the list of all drives.

Returns a list of all logical drives or volumes, or an empty list if no drives are found or on error.

Then, you have methods to query the uri, filter based on "remote" type, etc.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top