Summary
Copies all files matching the provided pattern to a new location.
- Namespace
- Cake
.Common .IO - Containing Type
- FileAliases
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Copy")]
public static void CopyFiles(this ICakeContext context, GlobPattern pattern, DirectoryPath targetDirectoryPath)
Examples
CopyFiles("Cake.*", "./publish");
Attributes
| Type | Description |
|---|---|
| Cake |
An attribute used to mark script method aliases. |
| Cake |
An attribute used for documentation of alias methods/properties. |
Parameters
| Name | Type | Description |
|---|---|---|
| context | ICakeContext | The context. |
| pattern | GlobPattern | The pattern. |
| targetDirectoryPath | DirectoryPath | The target directory path. |
Return Value
| Type | Description |
|---|---|
| void |
