Click here to Skip to main content
15,881,092 members
Articles / Programming Languages / C++
Alternative
Tip/Trick

How to get Present Logical Drives (the bitwise way)

Rate me:
Please Sign up or sign in to vote.
4.78/5 (5 votes)
19 Dec 2010CPOL 9.8K   4   1
Forget all that "C" old bit operator, you are "C++", use the modern STL way ;) #include #include void PrintLogicalDrives(){ using namespace std; bitset lt ld = (int)GetLogicalDrives(); for( char i = 'A'; i <= 'Z'; i++ ) { ...
Forget all that "C" old bit operator, you are "C++", use the modern STL way ;)

#include <bitset>
#include <iostream>

void PrintLogicalDrives()
{
    using namespace std;
    bitset lt< 'Z' - 'A' + 1 > ld = (int)GetLogicalDrives();
    for( char i = 'A'; i <= 'Z'; i++ )
    {
        if( ld[ i - 'A' ] )
            cout << i << ":" << endl;
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
France France
I'm an independent Software Developer living in the Alpes Maritimes (aka French Riviera).

Even if in the past I have worked regularily with Fortran, Pascal, Basic (not necessarily Visual), and much more esoteric languages (who knows Prolog, Lotus 123 macros ?), even if I still work from time to time with C#, Java or some "interpreted languages", I'm more specialized in C++.
I work on MFC since the very first version, I enjoy working on Visual Studio 2010, its C++0x features, STL, MFC, boost, WTL ...

Comments and Discussions

 
GeneralReason for my vote of 5 Good answer. Pin
Alain Rist18-Dec-10 6:08
Alain Rist18-Dec-10 6:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.