My Project
|
Classes | |
struct | DirEnt |
Public Member Functions | |
DirList (std::string path, bool descend) | |
DirList (const DirList &objToBeCopied) | |
DirList (DirList &objToBeCopied) | |
void | operator= (const DirList &objToBeAssigned) |
void | operator= (DirList &objToBeAssigned) |
virtual | ~DirList () |
void | listEntries () |
std::list< DirEnt > | getFiles (bool includeSymlinks=false) |
std::list< DirEnt > | getDirs (bool includeSymlinks=false) |
void | listEntries (std::list< DirEnt > &entries) |
Friends | |
std::ostream & | operator<< (std::ostream &os, DirEnt &entry) |
std::ostream & | operator<< (std::ostream &os, DirList &obj) |
DirList::DirList | ( | std::string | path, |
bool | descend | ||
) |
Constructor.
....................................................................... Get a listing of the specified directory, and optionally descend into subdirectories
DirList::DirList | ( | const DirList & | objToBeCopied | ) |
Copy Constructor.
....................................................................... Const Copy Constructor.
DirList::DirList | ( | DirList & | objToBeCopied | ) |
Copy Constructor.
....................................................................... Copy Constructor.
|
virtual |
Destructor.
....................................................................... Destructor.
void DirList::listEntries | ( | ) |
....................................................................... Get a listing of the specified directory, and optionally descend into subdirectories
void DirList::listEntries | ( | std::list< DirEnt > & | entries | ) |
....................................................................... Get a listing of the specified directory, and optionally descend into subdirectories
void DirList::operator= | ( | const DirList & | objToBeAssigned | ) |
Const Assignment Operator.
....................................................................... Const Assignment Operator.
void DirList::operator= | ( | DirList & | objToBeAssigned | ) |
Assignment Operator.
....................................................................... Assignment Operator.
|
friend |
Output Operator.