* @brief Retrieves information about the file. * * @return The file information. */
| 243 | /** |
| 244 | * @brief Retrieves information about the file. |
| 245 | * |
| 246 | * @return The file information. |
| 247 | */ |
| 248 | inline kt_stat64_t info() |
| 249 | { |
| 250 | kt_stat64_t s = {}; |
| 251 | _error = (kt_stat64(_filePath.c_str(), &s) == -1) ? errno : 0; |
| 252 | return s; |
| 253 | } |