Gets the permissions of the specified file or filepath in their octal format.
Parameters
$filestringrequired- Path to the file.
Source
public function getchmod( $file ) {
$file_perms = @fileperms( $this->sftp_path( $file ) );
if ( ! is_int( $file_perms ) ) {
return '';
}
return substr( decoct( $file_perms ), -3 );
}
Changelog
| Version | Description |
|---|---|
| 2.7.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.