Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » VC++ / MFC » Anzahl best. Files in Directory

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
04.08.2004, 10:43 Uhr
~urs
Gast


Hallo!

Wie ermittelt man die Anzahl Files mit bestimmter Extension (z.b. *.txt) in einem Ordner?
thx!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
04.08.2004, 10:55 Uhr
RedEagle




C++:
#include <iostream.h>
#include <string.h>
#include <conio.h>

int main()
{
WIN32_FIND_DATA data;
int anzahl=0;

  HANDLE h=FindFirstFile("c:\\ordner\\*.txt", &data);
  if(INVALID_HANDLE_VALUE==h) return(1);

  do
  {
   anzahl++;
  }
  while(FindNextFile(h, &data));

  cout << "es gibt " << anzahl << " textdatein";

getch();
return 0;
}


--
MFG RedEagle
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ VC++ / MFC ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: