@@ -40,8 +40,8 @@ def copy_fs(
4040 dst_path)``.
4141 workers (int): Use `worker` threads to copy data, or ``0`` (default) for
4242 a single-threaded copy.
43- preserve_time (bool): If `True`, try to preserve atime, ctime,
44- and mtime of the resources (defaults to `False`).
43+ preserve_time (bool): If `True`, try to preserve mtime of the
44+ resources (defaults to `False`).
4545
4646 """
4747 return copy_dir (
@@ -76,8 +76,8 @@ def copy_fs_if_newer(
7676 dst_path)``.
7777 workers (int): Use ``worker`` threads to copy data, or ``0`` (default) for
7878 a single-threaded copy.
79- preserve_time (bool): If `True`, try to preserve atime, ctime,
80- and mtime of the resources (defaults to `False`).
79+ preserve_time (bool): If `True`, try to preserve mtime of the
80+ resources (defaults to `False`).
8181
8282 """
8383 return copy_dir_if_newer (
@@ -138,8 +138,8 @@ def copy_file(
138138 src_path (str): Path to a file on the source filesystem.
139139 dst_fs (FS or str): Destination filesystem (instance or URL).
140140 dst_path (str): Path to a file on the destination filesystem.
141- preserve_time (bool): If `True`, try to preserve atime, ctime,
142- and mtime of the resource (defaults to `False`).
141+ preserve_time (bool): If `True`, try to preserve mtime of the
142+ resource (defaults to `False`).
143143
144144 """
145145 with manage_fs (src_fs , writeable = False ) as _src_fs :
@@ -182,8 +182,8 @@ def copy_file_internal(
182182 src_path (str): Path to a file on the source filesystem.
183183 dst_fs (FS): Destination filesystem.
184184 dst_path (str): Path to a file on the destination filesystem.
185- preserve_time (bool): If `True`, try to preserve atime, ctime,
186- and mtime of the resource (defaults to `False`).
185+ preserve_time (bool): If `True`, try to preserve mtime of the
186+ resource (defaults to `False`).
187187
188188 """
189189 if src_fs is dst_fs :
@@ -223,8 +223,8 @@ def copy_file_if_newer(
223223 src_path (str): Path to a file on the source filesystem.
224224 dst_fs (FS or str): Destination filesystem (instance or URL).
225225 dst_path (str): Path to a file on the destination filesystem.
226- preserve_time (bool): If `True`, try to preserve atime, ctime,
227- and mtime of the resource (defaults to `False`).
226+ preserve_time (bool): If `True`, try to preserve mtime of the
227+ resource (defaults to `False`).
228228
229229 Returns:
230230 bool: `True` if the file copy was executed, `False` otherwise.
@@ -273,8 +273,8 @@ def copy_structure(
273273 walker (~fs.walk.Walker, optional): A walker object that will be
274274 used to scan for files in ``src_fs``. Set this if you only
275275 want to consider a sub-set of the resources in ``src_fs``.
276- preserve_time (bool): If `True`, try to preserve atime, ctime,
277- and mtime of the resource (defaults to `False`).
276+ preserve_time (bool): If `True`, try to preserve mtime of the
277+ resource (defaults to `False`).
278278
279279 """
280280 walker = walker or Walker ()
@@ -311,8 +311,8 @@ def copy_dir(
311311 ``(src_fs, src_path, dst_fs, dst_path)``.
312312 workers (int): Use ``worker`` threads to copy data, or ``0`` (default) for
313313 a single-threaded copy.
314- preserve_time (bool): If `True`, try to preserve atime, ctime,
315- and mtime of the resources (defaults to `False`).
314+ preserve_time (bool): If `True`, try to preserve mtime of the
315+ resources (defaults to `False`).
316316
317317 """
318318 on_copy = on_copy or (lambda * args : None )
@@ -383,8 +383,8 @@ def copy_dir_if_newer(
383383 ``(src_fs, src_path, dst_fs, dst_path)``.
384384 workers (int): Use ``worker`` threads to copy data, or ``0`` (default) for
385385 a single-threaded copy.
386- preserve_time (bool): If `True`, try to preserve atime, ctime,
387- and mtime of the resources (defaults to `False`).
386+ preserve_time (bool): If `True`, try to preserve mtime of the
387+ resources (defaults to `False`).
388388
389389 """
390390 on_copy = on_copy or (lambda * args : None )
0 commit comments