fs.move¶
Functions for moving files between filesystems.
-
fs.move.
move_dir
(src_fs: Union[Text, FS], src_path: Text, dst_fs: Union[Text, FS], dst_path: Text, workers: int = 0) → None[source]¶ Move a directory from one filesystem to another.
- Parameters
src_fs (FS or str) – Source filesystem (instance or URL).
src_path (str) – Path to a directory on
src_fs
dst_fs (FS or str) – Destination filesystem (instance or URL).
dst_path (str) – Path to a directory on
dst_fs
.workers (int) – Use
worker
threads to copy data, or0
(default) for a single-threaded copy.
-
fs.move.
move_file
(src_fs: Union[Text, FS], src_path: Text, dst_fs: Union[Text, FS], dst_path: Text) → None[source]¶ Move a file from one filesystem to another.