php – Phing复制文件夹的内容
作者:互联网
我正在尝试将文件夹的内容移动到Phing中的另一个目的地.我不能直接从SVN下载内容,因为它们是拉链的.解压缩文件后,我想移动内容.
我发现了这种语法,但它不起作用:
Copy a whole directory with phing
谢谢!
解决方法:
通过你所链接的帖子是错误的,或者自那个答案以来Phing的变化.
这里有一个工作的build.xml,它将test复制到test2(期望.svn文件夹).语法如下:
<?xml version="1.0" encoding="UTF-8"?>
<project name="Hexdump" default="build">
<target name="build">
<copy todir="test2">
<fileset dir="test">
<include name="**"></include>
<exclude name="**/.svn/**"></exclude>
</fileset>
</copy>
</target>
</project>
你可以参考Phing Core Tasks Documentation
标签:php,phing,build-script 来源: https://codeday.me/bug/20190620/1243916.html