chmod MODE, LIST |
更改指定的文件LIST的指定的模式的MODE。 应该是在八进制值的MODE 。您必须检查返回值,对文件的数量,你试图改变,以确定操作是否失败。 This funcation call is equivalent to Unix Command 调用相当于UNIX命令chmod MODE FILELIST
整数,成功更改的文件数
$cnt = chmod 0755, 'foo', 'bar'; chmod 0755, @executables; $mode = '0644'; chmod $mode, 'foo'; # !!! sets mode to # --w----r-T # by www.gitbook.net $mode = '0644'; chmod oct($mode), 'foo'; # this is better $mode = 0644; chmod $mode, 'foo'; # this is best