描述
此函數將 LIST 中指定的文件的模式更改為指定的 MODE。 MODE 的值應為八進製。您必須根據嘗試更改的文件數檢查返回值,以確定操作是否失敗。此函數調用等效於 Unix 命令 chmod MODE FILELIST。
用法
以下是此函數的簡單語法 âˆ'
chmod MODE, LIST
返回值
此函數返回整數,成功更改的文件數。
示例
以下是顯示其基本用法的示例代碼 -
#!/usr/bin/perl
$cnt = chmod 0755, 'foo', 'bar';
chmod 0755, @executables;
$mode = '0644'; chmod $mode, 'foo'; # !!! sets mode to # --w----r-T
$mode = '0644'; chmod oct($mode), 'foo'; # this is better
$mode = 0644; chmod $mode, 'foo'; # this is best
相關用法
- Perl chop()用法及代碼示例
- Perl chr()用法及代碼示例
- Perl chomp()用法及代碼示例
- Perl chop用法及代碼示例
- Perl chr用法及代碼示例
- Perl chomp用法及代碼示例
- Perl crypt用法及代碼示例
- Perl continue用法及代碼示例
- Perl cos()用法及代碼示例
- Perl caller用法及代碼示例
- Perl sin()用法及代碼示例
- Perl abs()用法及代碼示例
注:本文由純淨天空篩選整理自 Perl chmod Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。