* @brief Checks if the file can be executed. * * @return true if the file can be executed, false otherwise. */
| 221 | |
| 222 | /** |
| 223 | * @brief Checks if the file can be executed. |
| 224 | * |
| 225 | * @return true if the file can be executed, false otherwise. |
| 226 | */ |
| 227 | inline bool canExecute() const |
| 228 | { |
| 229 | return access(_filePath.c_str(), X_OK) != -1; |
nothing calls this directly
no outgoing calls
no test coverage detected