Contains utilitary functions for accessing the filesystem. More...
#include <filesystem.h>
Static Public Member Functions | |
| static std::deque< std::string > | GetFilesInDirectory (const std::string &directory) |
| Traverses the provided directory (non-recursively) and extracts the absolute paths to all the files in it. More... | |
Private Member Functions | |
| Filesystem () | |
| Default constructor - not implemented. | |
| ~Filesystem () | |
| Destructor - void implementation. | |
| Filesystem (Filesystem const &) | |
| Copy constructor - not implemented. | |
| Filesystem | operator= (Filesystem const &) |
| Copy assignment operator - not implemented. | |
Contains utilitary functions for accessing the filesystem.
Definition at line 52 of file filesystem.h.
|
static |
Traverses the provided directory (non-recursively) and extracts the absolute paths to all the files in it.
Doesn't support non-ASCII file names
| directory | the absolute path to the directory |
Definition at line 40 of file filesystem.cpp.
1.8.6