MCPcopy Create free account
hub / github.com/apache/arrow / garrow_file_info_is_dir

Function garrow_file_info_is_dir

c_glib/arrow-glib/file-system.cpp:353–358  ·  view source on GitHub ↗

* garrow_file_info_is_dir * @file_info: A #GArrowFileInfo. * * Returns: %TRUE if the entry is a directory, %FALSE otherwise. * * Since: 0.17.0 */

Source from the content-addressed store, hash-verified

351 * Since: 0.17.0
352 */
353gboolean
354garrow_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:

Calls 2

garrow_file_info_get_rawFunction · 0.85
IsDirectoryMethod · 0.45

Tested by

no test coverage detected