WP_Filesystem_SSH2::cwdpublicWP 2.7.0

Gets the current working directory.

Method of the class: WP_Filesystem_SSH2{}

No Hooks.

Returns

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 7.1

public function cwd() {
	if ( ! $this->sftp_link ) {
		return false;
	}

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

	if ( ! is_string( $cwd ) ) {
		return false;
	}

	return trailingslashit( trim( $cwd ) );
}