Ant Datatype 의 fileset

1058 단어 File
fileset (파일 집합) 은 하나의 단독 디 렉 터 리 를 루트 로 하 는 파일 집합 입 니 다.기본적으로 전체 디 렉 터 리 와 하위 디 렉 터 리 에 있 는 모든 파일 을 포함 합 니 다.
 
       build. xml 파일:
<?xml version="1.0" encoding="UTF-8"?>
<project name="datatype_fileset" default="copy">
	
	<property name="copy.fromdir" location="src"/>
	<property name="copy.todir" location="tosrc"/>

	<target name="copy">
		<copy todir="${copy.todir}">
			<fileset dir="${copy.fromdir}"/>
		</copy>
	</target>

	<target name="clean">
		<delete dir="${copy.todir}"/>
	</target>
	
</project>

 출력
>ant
Buildfile: E:\antspace\datatype\build.xml

copy:
     [copy] Copying 2 files to E:\antspace\datatype\tosrc

BUILD SUCCESSFUL
Total time: 0 seconds

좋은 웹페이지 즐겨찾기