WP_Filesystem_SSH2::cwd()
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() WP Filesystem SSH2::cwd code WP 6.6.2
public function cwd() { $cwd = ssh2_sftp_realpath( $this->sftp_link, '.' ); if ( $cwd ) { $cwd = trailingslashit( trim( $cwd ) ); } return $cwd; }