Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
void ListValidDrives()
{
int drives = GetLogicalDrives();
for(int i = 2;i<26;i++)
{
CString temp;
temp.Format("%c:\\",'A'+i);
unsigned int type = GetDriveType(temp);
if(drives>>i & 1)
{
if(type & DRIVE_REMOTE)
{
// mapped drive
}
}
}
}