1
這裏是我的目錄結構:螞蟻非遞歸文件集
module/
a/
foo.php
b/
bar.php
b/
c/
我想爲下模塊每個目錄運行命令/但非遞歸,所以只有這些應包括:
a/
b/
c/
如果我這樣做:
<target name="foo">
<apply executable="ls">
<arg value="-l" />
<fileset dir="${basedir}/module/">
</fileset>
</apply>
</target>
這將遞歸運行的每個目錄下模塊文件。