* @brief Checks if the file can be written. * * @return true if the file can be written, false otherwise. */
| 211 | * @return true if the file can be written, false otherwise. |
| 212 | */ |
| 213 | inline bool canWrite() const |
| 214 | { |
| 215 | return access(_filePath.c_str(), W_OK) != -1; |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * @brief Checks if the file can be executed. |
nothing calls this directly
no outgoing calls
no test coverage detected