C++ GetFolderCount, GetFolderProp sample

Top  Previous  Next

C++ GetFolderCount, GetFolderProp sample.

#include "MCore.h"

void ListFolders ( )

{

  DWORD fcount = GetFolderCount ( MCoreHandle );

  if ( fcount == 0 )

  {

    cout << "No folders or handle is invalid" << endl;

    return;

  }

  for ( DWORD i = 0 ; i < fcount; i++ )

  {

    FOLDERPROP folder;

    GetFolderProp ( MCoreHandle,i,&folder ) ;

    cout << folder. Name ;

    cout << " - mail count: " << folder. MailCount << endl;

  }

}

 

Hosted by uCoz