Database
dlugosz.lst
Associated article: Extended Directory Searches Using C++
Tags: Database C/C++
_EXTENDED DIRECTORY SEARCHES USING C++_
by John M. Dlugosz
[LISTING ONE]
// DIRPATH.HPP Copyright 1988 by John M. Dlugosz
struct dirpath {
char drive[3];
char path[65];
char base[9];
char ext[5];
void operator<< (char const*name); //throw a name into the ...


