🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# B.8 ChmodTask Sets the mode of a file or directory. For more informations, see [chmod](http://php.net/chmod) in the PHP Manual. Table B.10:聽Attributes NameTypeDescriptionDefaultRequired`file``String`The name of the file or directory. You either have to specify this attribute, or use a fileset.n/aYes`mode``String`The new mode (octal) for the file. Specified in octal, even if the first digit is not a '0'.n/aYes`quiet``Boolean`Set quiet mode, which suppresses warnings if `chmod()` fails`false`No`failonerror``Boolean`This flag means 'note errors to the output, but keep going'`true`No`verbose``Boolean`Give more information in error message in case of a failure`true`No B.8.1 Examples ``` <chmod file="test.txt" mode="0755" /> <chmod file="/home/test" mode="0775" /> <chmod file="/home/test/mine.txt" mode="0500" verbose="true" /> ``` B.8.2 Supported Nested Tags - `fileset`