2013-05-22 4 views

답변

5

Etiher 연결 한 게시물이 잘못되었거나 그 대답 이후로 Phing이 변경된 곳입니다.

여기에 test에서 test2 (예 : .svn 폴더)를 복사하는 작업이 build.xml이됩니다. 구문은 다음과 같습니다

<?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

+0

신난다, 고마워! – RogerTheShrubber

+0

np;) ......... – hek2mgl

+0

링크가 끊어졌습니다. 어쨌든, 코드 주셔서 감사합니다! 그것은 저를 위해 또한 일하고 있습니다 : – tftd

관련 문제