Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文件需要从工作区/dir1 复制到当前项目[workspace/dir2]
我的 ANT 构建文件在 dir2
您是否查看了可供您使用的ant 任务?
复制任务可用于执行此操作:
<copy file="../dir1/filename" todir="."/>
仅当项目目录中不存在该文件,或者其中的文件../dir1比项目目录中的现有副本新时,才会发生副本。
../dir1
使用以下代码复制工作区
<project name="ant_workspace_demo"> <target name="copy_workspace"> <copy todir="../New_files"> <fileset dir="AntWorkspace"/> </copy> </target> </project>
然后,在命令提示符(Windows)中输入“ant copy_workspace”。