![]() |
Kea 2.6.2
|
Classes | |
| struct | Path |
| Paths on a filesystem. More... | |
Functions | |
| bool | exists (const std::string &path) |
| Check if there is a file or directory at the given path. | |
| string | getContent (const std::string &file_name) |
| Get the content of a regular file. | |
| bool | isDir (const std::string &path) |
| Check if there is a directory at the given path. | |
| bool | isFile (const std::string &path) |
| Check if there is a file at the given path. | |
| bool isc::util::file::exists | ( | const std::string & | path | ) |
Check if there is a file or directory at the given path.
| path | The path being checked. |
Definition at line 49 of file filesystem.cc.
Referenced by getContent().
| std::string isc::util::file::getContent | ( | const std::string & | file_name | ) |
Get the content of a regular file.
| file_name | The file name. |
| BadValue | when the file can't be opened or is not a regular one. |
Definition at line 32 of file filesystem.cc.
References exists(), isc_throw, and isFile().
Referenced by isc::http::BasicHttpAuthConfig::getFileContent(), and isc::d2::TSIGKeyInfoParser::parse().
Here is the call graph for this function:| bool isc::util::file::isDir | ( | const std::string & | path | ) |
Check if there is a directory at the given path.
| path | The path being checked. |
Definition at line 55 of file filesystem.cc.
Referenced by isc::asiolink::TlsContextBase::configure(), and isc::db::MySqlConnection::openDatabase().
| bool isc::util::file::isFile | ( | const std::string & | path | ) |
Check if there is a file at the given path.
| path | The path being checked. |
Definition at line 64 of file filesystem.cc.
Referenced by getContent(), isc::db::MySqlConnection::initializeSchema(), and isc::db::PgSqlConnection::initializeSchema().