* garrow_file_info_is_dir * @file_info: A #GArrowFileInfo. * * Returns: %TRUE if the entry is a directory, %FALSE otherwise. * * Since: 0.17.0 */
| 351 | * Since: 0.17.0 |
| 352 | */ |
| 353 | gboolean |
| 354 | garrow_file_info_is_dir(GArrowFileInfo *file_info) |
| 355 | { |
| 356 | const auto arrow_file_info = garrow_file_info_get_raw(file_info); |
| 357 | return arrow_file_info->IsDirectory(); |
| 358 | } |
| 359 | |
| 360 | /** |
| 361 | * garrow_file_info_to_string: |
no test coverage detected