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.
我想使用 ant 将修改和未修改的文件与父目录一起复制到多个目录中的目录中。当我使用修改后的任务时,它只复制修改后的文件以及父目录。未复制未修改的文件。请帮助
您可以使用启用了选项的copy任务。即使目标文件较新,overwrite选项也会覆盖现有文件。overwrite例如:
copy
overwrite
<copy todir="dest" overwrite="true"> <fileset dir="src" /> </copy>
参考:http ://ant.apache.org/manual/Tasks/copy.html