Met Copyfile
# ASP CopyFile Method
* * Complete FileSystemObject Object Reference Manual](#)
* * *
The CopyFile method copies one or more files from one location to another.
### Syntax
FileSystemObject.CopyFile source,destination[,overwrite]
| Parameter | Description |
| --- | --- |
| source | Required. The file(s) to be copied (wildcards can be used). |
| destination | Required. The destination where the file(s) are to be copied (wildcards cannot be used). |
| overwrite | Optional. A Boolean value that specifies whether an existing file can be overwritten. True allows overwriting existing files, False prevents overwriting. The default is True. |
* * *
### Example
* * Complete FileSystemObject Object Reference Manual](#)
YouTip