本文介绍了如何运行`chmod -R + w`使用Ant,文件和文件夹?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想这样做的相当于搭配chmod -R + W富/
在 Ant的构建脚本。
I'd like to do the equivalent of a chmod -R +w foo/
in an Ant build script.
到目前为止,我用这样的:
So far I'm using this:
<chmod perm="g+w">
<dirset dir="${basedir}/foo">
</dirset>
<fileset dir="${basedir}/foo">
</fileset>
</chmod>
有没有写,包括文件的和的文件夹,一个更合适的方法的递归的?
Is there a neater way to write that to include files and folders recursively?
推荐答案
以下不工作:
<chmod file="${basedir}/foo/**" perm="g+w" type="both"/>
积分与OP共享。
Credits shared with the OP.
- Chmod Task
这篇关于如何运行`chmod -R + w`使用Ant,文件和文件夹?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!