سؤال

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