ArrowHDFSFileSystem

描述

class Arrow.HDFSFileSystem : Arrow.FileSystem {
  parent_instance: GArrowFileSystem
}
无可用描述。

实例方法

继承自 GArrowFileSystem 的方法 (15)
garrow_file_system_copy_file

复制文件。如果目标存在且是一个目录,则返回错误。否则,它将被替换。

since: 0.17.0

garrow_file_system_create_dir

创建目录和子目录。如果目录已存在,此函数将成功。

since: 0.17.0

garrow_file_system_delete_dir

递归地删除目录及其内容。

since: 0.17.0

garrow_file_system_delete_dir_contents

递归地删除目录的内容。 类似于 garrow_file_system_delete_dir(),但不删除目录本身。 传递一个空路径 ("") 将会擦除整个文件系统树。

since: 0.17.0

garrow_file_system_delete_file

删除文件。

since: 0.17.0

garrow_file_system_delete_files

删除多个文件。

since: 0.17.0

garrow_file_system_get_file_info

获取给定目标的信息。

since: 0.17.0

garrow_file_system_get_file_infos_paths

一次性获取多个给定目标的信息,与 garrow_file_system_get_file_info() 相同。

since: 0.17.0

garrow_file_system_get_file_infos_selector

根据选择器获取信息,与 garrow_file_system_get_file_info() 相同。

since: 0.17.0

garrow_file_system_get_type_name
无可用描述。

since: 0.17.0

garrow_file_system_move

移动/重命名文件或目录。 如果目标存在: - 如果它是一个非空目录,则返回错误 - 否则,如果它与源具有相同的类型,则它将被替换 - 否则,行为是未指定的(与实现相关)。

since: 0.17.0

garrow_file_system_open_append_stream

打开一个用于追加的输出流。 如果目标不存在,则会创建一个新的空文件。

since: 0.17.0

garrow_file_system_open_input_file

打开一个用于随机访问读取的输入文件。

since: 0.17.0

garrow_file_system_open_input_stream

打开一个用于顺序读取的输入流。

since: 0.17.0

garrow_file_system_open_output_stream

打开一个用于顺序写入的输出流。 如果目标已经存在,则现有数据将被截断。

since: 0.17.0

继承自 GObject 的方法 (43)

请参阅 GObject 以获取完整的方法列表。

属性

继承自 GArrowFileSystem 的属性 (1)
Arrow.FileSystem:file-system
无可用描述。

信号

继承自 GObject 的信号 (1)
GObject::notify

当对象的属性通过 g_object_set_property()、g_object_set() 等设置其值时,会发出 notify 信号。

类结构

struct ArrowHDFSFileSystemClass {
  GArrowFileSystemClass parent_class;
  
}
无可用描述。
类成员
parent_class: GArrowFileSystemClass
无可用描述。