Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » Wie den Inhalt eines Ordners auslesen?

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
16.07.2004, 21:37 Uhr
~hmmm
Gast


Hallo!
Wie kann man unter c++ den Inhalt eines Ordners auslesen und die jeweils gefundenen Dateinamen in jeweils einen String packen?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
16.07.2004, 21:54 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


indem man die suchfunktion www.fun-soft.de/search.php benutzt ...
--
class God : public ChuckNorris { };
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
17.07.2004, 22:38 Uhr
0xdeadbeef
Gott
(Operator)


boost bietet eine portable Möglichkeit:

C++:
#include <iostream>
#include <iterator>
#include <list>
#include <string>

#include "boost/filesystem/operations.hpp"
#include "boost/filesystem/path.hpp"

int main()
{
  std::list<std::string> filenames;

  boost::filesystem::path dir("/path/to/directory");

  if (boost::filesystem::exists(dir) &&
      boost::filesystem::is_directory(dir)) {
    boost::filesystem::directory_iterator end_itr;
    for(boost::filesystem::directory_iterator i(dir);
        i != end_itr;
        ++i)
      filenames.push_back(i->leaf());
  }

  std::copy(filenames.begin(),
            filenames.end  (),
            std::ostream_iterator<std::string>(std::cout, "\n"));

  return 0;
}


--
Einfachheit ist Voraussetzung für Zuverlässigkeit.
-- Edsger Wybe Dijkstra
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


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: