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

Function garrow_file_get_mode

c_glib/arrow-glib/file.cpp:100–107  ·  view source on GitHub ↗

* garrow_file_get_mode: * @file: A #GArrowFile. * * Returns: The mode of the file. */

Source from the content-addressed store, hash-verified

98 * Returns: The mode of the file.
99 */
100GArrowFileMode
101garrow_file_get_mode(GArrowFile *file)
102{
103 auto arrow_file = garrow_file_get_raw(file);
104
105 auto arrow_mode = arrow_file->mode();
106 return garrow_file_mode_from_raw(arrow_mode);
107}
108
109G_END_DECLS
110

Callers

nothing calls this directly

Calls 2

modeMethod · 0.45

Tested by

no test coverage detected