문제

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