这是我的目录结构:
module/
a/
foo.php
b/
bar.php
b/
c/
我想为 module/ 下的每个目录运行一个命令,但不是递归的,所以只应该包括这些:
a/
b/
c/
如果我这样做:
<target name="foo">
<apply executable="ls">
<arg value="-l" />
<fileset dir="${basedir}/module/">
</fileset>
</apply>
</target>
这将对模块下的每个目录和文件递归运行。