Summary
Copies existing files to a new location.
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Copy")]
public static void CopyFiles(this ICakeContext context, IEnumerable<FilePath> filePaths, DirectoryPath targetDirectoryPath, bool preserveFolderStructure)
Examples
var files = GetFiles("./**/Cake.*");
CopyFiles(files, "destination");
Attributes
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
filePaths |
IEnumerable<FilePath> |
The file paths. |
targetDirectoryPath |
DirectoryPath |
The target directory path. |
preserveFolderStructure |
bool |
Keep the folder structure. |
Return Value