capturegraph.data.save.copy
#
Copy - Copy files using zip broadcasting#
Copy files from a List of source paths to destination paths.
Usage
copy(*, src, dst)
#
Copy files from source paths to destination paths.
Uses zip internally to pair sources and destinations.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
src
|
List[Path]
|
List of source file paths |
required |
dst
|
List[Path | str]
|
List of destination paths (same length as src) |
required |
Returns:
| Type | Description |
|---|---|
List[Path]
|
List of destination paths that were created |