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