Hello fellow programmers,

i have been introducted to QT some while ago while i already had java and c++ experience. So programming in QT was easy to learn, and usually i find my way around problems or things i want. But here is the deal.

To make a program that can read external devices such as SD cards or usb sticks is easy using the QDir, but i am making a program for a user who needs to load data from his device to the pc. Now for this i want to read out the drives on a windows system, also not hard to aquire using the next lines:

foreach( QFileInfo drive, QDir::drives() )
{
qDebug() << "Drive: " << drive.absolutePath();
}

now this in return gives the Letters form the drives but not the name, wich i mean the label you can give in windows. This is nice to because user usually label there devies.

So is there anyone here able to help me out. I tried sorts of things myself but i am not a professionol yet, just a normal programmer.

thanx in advance

Kenny Baas