WP_Filesystem_SSH2::getchmod()publicWP 2.7.0

Gets the permissions of the specified file or filepath in their octal format.

Method of the class: WP_Filesystem_SSH2{}

No Hooks.

Return

String. Mode of the file (the last 3 digits).

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() code WP 6.5.2

public function getchmod( $file ) {
	return substr( decoct( @fileperms( $this->sftp_path( $file ) ) ), -3 );
}