pyarrow.fs.FileSystemHandler¶
-
class
pyarrow.fs.FileSystemHandler¶ Bases:
abc.ABCAn abstract class exposing methods to implement PyFileSystem’s behavior.
-
__init__()¶ Initialize self. See help(type(self)) for accurate signature.
Methods
Initialize self.
Attributes
Implement PyFileSystem.copy_file(…).
Implement PyFileSystem.create_dir(…).
Implement PyFileSystem.delete_dir(…).
Implement PyFileSystem.delete_dir_contents(…).
Implement PyFileSystem.delete_file(…).
Implement PyFileSystem.delete_dir_contents(“/”, accept_root_dir=True).
Implement PyFileSystem.get_file_info(paths).
Implement PyFileSystem.get_file_info(selector).
Implement PyFileSystem.type_name.
Implement PyFileSystem.move(…).
Implement PyFileSystem.normalize_path(…).
Implement PyFileSystem.open_append_stream(…).
Implement PyFileSystem.open_input_file(…).
Implement PyFileSystem.open_input_stream(…).
Implement PyFileSystem.open_output_stream(…).
-
copy_file¶ Implement PyFileSystem.copy_file(…).
-
create_dir¶ Implement PyFileSystem.create_dir(…).
-
delete_dir¶ Implement PyFileSystem.delete_dir(…).
-
delete_dir_contents¶ Implement PyFileSystem.delete_dir_contents(…).
-
delete_file¶ Implement PyFileSystem.delete_file(…).
-
delete_root_dir_contents¶ Implement PyFileSystem.delete_dir_contents(“/”, accept_root_dir=True).
-
get_file_info¶ Implement PyFileSystem.get_file_info(paths).
-
get_file_info_selector¶ Implement PyFileSystem.get_file_info(selector).
-
get_type_name¶ Implement PyFileSystem.type_name.
-
move¶ Implement PyFileSystem.move(…).
-
normalize_path¶ Implement PyFileSystem.normalize_path(…).
-
open_append_stream¶ Implement PyFileSystem.open_append_stream(…).
-
open_input_file¶ Implement PyFileSystem.open_input_file(…).
-
open_input_stream¶ Implement PyFileSystem.open_input_stream(…).
-
open_output_stream¶ Implement PyFileSystem.open_output_stream(…).
-