WP_Filesystem_SSH2::getchmod
Gets the permissions of the specified file or filepath in their octal format.
Method of the class: WP_Filesystem_SSH2{}
No Hooks.
Returns
String. Mode of the file (the last 3 digits). Empty string on failure.
Usage
$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2(); $WP_Filesystem_SSH2->getchmod( $file );
- $file(string) (required)
- Path to the file.
Changelog
| Since 2.7.0 | Introduced. |
WP_Filesystem_SSH2::getchmod() WP Filesystem SSH2::getchmod code WP 7.1
public function getchmod( $file ) {
$file_perms = @fileperms( $this->sftp_path( $file ) );
if ( ! is_int( $file_perms ) ) {
return '';
}
return substr( decoct( $file_perms ), -3 );
}