copyfile
copyfile(
src:string,dst:string):Promise<void>
Defined in: packages/pythonlib/src/shutil.node.ts:276
Copy a file’s content (but not metadata) to another file.
Parameters
| Parameter | Type | Description |
|---|---|---|
src | string | Source file path |
dst | string | Destination file path |
Returns
Promise<void>