Perl chmod 函数


描述

该函数将 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_function_references.htm