File system related functions. More...
#include <string>
#include <vector>
Go to the source code of this file.
Functions | |
std::string | lobot::dirname (const std::string &path) |
std::string | lobot::basename (const std::string &path) |
std::string | lobot::extension (const std::string &path) |
bool | lobot::exists (const std::string &path) |
bool | lobot::is_dir (const std::string &path) |
bool | lobot::is_file (const std::string &path) |
std::vector< std::string > | lobot::list_dir (const std::string &path) |
std::vector< std::string > | lobot::find_file (const std::string &dir, const std::string &target) |
std::vector< std::string > | lobot::find_dir (const std::string &dir, const std::string &target) |
File system related functions.
Various high-level functions encapsulating the underlying filesystem API. These functions either wrap around Boost.Filesystem or fallback to using the Unix API.
Definition in file LoFile.H.