hbutils.system.filesystem¶
- Overview:
Utilities for filesystem.
touch¶
copy¶
-
hbutils.system.filesystem.
copy
(src: str, dst: str)[source]¶ - Overview:
Copy a file or a directory from
src
todst
.src
can be a file or a directory, both are supported.From Stack Overflow - Copy file or directories recursively in Python.
- Parameters:
src – Source path.
dst – Destination path.