WP_Filesystem_SSH2::cwd()publicWP 2.7.0

Gets the current working directory.

Method of the class: WP_Filesystem_SSH2{}

No Hooks.

Return

String|false. The current working directory on success, false on failure.

Usage

$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2();
$WP_Filesystem_SSH2->cwd();

Changelog

Since 2.7.0 Introduced.

WP_Filesystem_SSH2::cwd() code WP 6.4.3

public function cwd() {
	$cwd = ssh2_sftp_realpath( $this->sftp_link, '.' );

	if ( $cwd ) {
		$cwd = trailingslashit( trim( $cwd ) );
	}

	return $cwd;
}