--- title: resources.Copy description: Copies the given resource to the target path. categories: [] action: aliases: [] related: [] returnType: resource.Resource signatures: [resources.Copy TARGETPATH RESOURCE] --- ```go-html-template {{ with resources.Get "images/a.jpg" }} {{ with resources.Copy "img/new-image-name.jpg" . }} {{ end }} {{ end }} ``` The relative URL of the new published resource will be: ```text /img/new-image-name.jpg ``` {{% note %}} Use the `resources.Copy` function with global, page, and remote resources. {{% /note %}}