2013-09-30 3 views

ответ

1

Поскольку вы хотите динамически определять файлы для работы с ними, я рекомендую вам получить ant-contrib.jar и использовать его задачу for. Я должен указать, что это напишет полный путь к файлу в комментарии.

<!-- Sample usage --> 
<target name="run"> 
    <prepend> 
    <!-- Assuming you are interested in *.txt files in the resource directory --> 
    <fileset dir="resource"> 
     <include name="**/*.txt"/> 
    </fileset> 
    </prepend> 
</target> 

<!-- Import the definitions from ant-contrib --> 
<taskdef resource="net/sf/antcontrib/antlib.xml"> 
    <classpath> 
    <pathelement location="../ant-contrib*.jar"/> 
    </classpath> 
</taskdef> 

<!-- Create the prepend task --> 
<macrodef name="prepend"> 
    <!-- Declare that it contains an element named "files". Implicit means it needn't be named --> 
    <element name="files" implicit="yes"/> 
    <sequential> 
    <!-- For loop, assigning the value of each iteration to "file" --> 
    <for param="file"> 
     <!-- Give the for loop the files --> 
     <files/> 
     <sequential> 
     <!-- Load the contents of the file into a property --> 
     <loadfile property="@{file}-content" srcfile="@{file}"/> 
     <!-- Echo the header you want into the file --> 
     <echo message="// @{file}${line.separator}" file="@{file}"/> 
     <!-- Append the original contents to the file --> 
     <echo message="${@{file}-content}" append="true" file="@{file}"/> 
     </sequential> 
    </for> 
    </sequential> 
</macrodef> 
+0

Это не так долго, но проблема в том, что у меня нет списка раньше времени. – teryret

Смежные вопросы