Hi, i would like to know how i can get an array containing the drives connected to the computer
maybe using this 'System::IO::DriveInfo::GetDrives()'
Then loop through that array and get each drive name ?
But what if a drive type has a more then one letter name?
i found this code which allows me to get the drives name's
'array<String ^> ^ strDrives = Environment::GetLogicalDrives();//Get all the drives connected to the computer
for each(String ^ strDrive in strDrives){ //Loop through all drives connected'
but i would like to be able to get more then that... i need the drive type also.