* @brief Checks if the file exists. * * @return true if the file exists, false otherwise. */
| 191 | * @return true if the file exists, false otherwise. |
| 192 | */ |
| 193 | inline bool exists() const |
| 194 | { |
| 195 | return access(_filePath.c_str(), F_OK) != -1; |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * @brief Checks if the file can be read. |
nothing calls this directly
no outgoing calls
no test coverage detected