ViaThinkSoft CodeLib
Dieser Artikel befindet sich in der Kategorie:
CodeLib → Programmierhilfen → C / C++
void read_mangled_files() {
glob_t paths;
int globresult;
char **p;
globresult = glob("test/*.txt", 0, NULL, &paths);
if (globresult == 0) {
for (p=paths.gl_pathv; *p != NULL; ++p) {
printf("Reading file %s ...\n", *p);
// Do something
}
globfree(&paths);
}
}
Daniel Marschall
ViaThinkSoft Mitbegründer
ViaThinkSoft Mitbegründer