WP_Filesystem_SSH2::is_dir()publicWP 2.7.0

Checks if resource is a directory.

Method of the class: WP_Filesystem_SSH2{}

No Hooks.

Return

true|false. Whether $path is a directory.

Usage

$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2();
$WP_Filesystem_SSH2->is_dir( $path );
$path(string) (required)
Directory path.

Changelog

Since 2.7.0 Introduced.

WP_Filesystem_SSH2::is_dir() code WP 6.4.3

public function is_dir( $path ) {
	return is_dir( $this->sftp_path( $path ) );
}