Skip to content

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

ParameterTypeDescription
srcstringSource file path
dststringDestination file path

Returns

Promise<void>