codepro.exportToFileSystem(replaced in Eclipse 3.x / Ant 1.6.2 by Copy) (old task name "ExportToFileSystem") Exports project resources to the underlying file system (files and folders). Each line in the <Resources> section defines a project resource or group of resources to be exported, where all paths are relative to the workspace root. If the resource specified is a folder, then recursively all files and folders in that folder will included in the export. Valid attributes include:
The codepro.exportToFileSystem Ant task is based upon the standard ant copy task, so all of the options that apply to the copy task (such as FileSets) also apply to the codepro.exportToFileSystem task. Example <codepro.exportToFileSystem destinationPath="G:/export-out/files"> <Resources> /CodeProStudioDemo </Resources> </codepro.exportToFileSystem> In this example, the CodeProStudioDemo project's entire contents are exported to the specified directory, preserving that projects entire directory structure. |