> For the complete documentation index, see [llms.txt](https://coldbox-elixir.ortusbooks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://coldbox-elixir.ortusbooks.com/v3/copying_files_and_directories.md).

# Copying Files & Directories

The `copy` method may be used to copy files and/or directories to new locations. All operations are relative to the project's `root` directory:

```javascript
const elixir = require("coldbox-elixir");

module.exports = elixir(mix => {
    mix.copy("resources/vendor/foo/bar.css", "includes/css/bar.css");
});
```
