From 753a6c60f47f3ac4f270005b65e9d6481de8eb68 Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:00:02 -0700 Subject: Adding maven and ant source trees Change-Id: I0a39b9add833a31b9c3f98d193983ae2f3a5a445 Signed-off-by: Ashlee Young --- .../apache-ant-1.9.6/manual/Tasks/copyfile.html | 73 ++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/copyfile.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/copyfile.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/copyfile.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/copyfile.html new file mode 100644 index 00000000..e204a7e6 --- /dev/null +++ b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/copyfile.html @@ -0,0 +1,73 @@ + + + + + + +Copyfile Task + + + + +

Copyfile

+

Deprecated

+

This task has been deprecated. Use the Copy task instead.

+

Description

+

Copies a file from the source to the destination. The file is only copied if +the source file is newer than the destination file, or when the destination file +does not exist.

+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
srcthe filename of the file to copy.Yes
destthe filename of the file where to copy to.Yes
filteringindicates whether token filtering should take place during + the copyNo
forceoverwriteoverwrite existing files even if the destination + files are newer (default is false).No
+

Examples

+
+

<copyfile src="test.java" dest="subdir/test.java"/>

+

<copyfile src="${src}/index.html" dest="${dist}/help/index.html"/>

+
+ + + + + -- cgit 1.2.3-korg