Saturday, February 21, 2009

Listing Logical Drives

DriveInfo[] dinf = DriveInfo.GetDrives();
int i = 0;
while (i < dinf.Length)
{
MessageBox.show(dinf[i]);
}

No comments:

Post a Comment