WP_Filesystem_ftpsockets::cwd()publicWP 2.5.0

Gets the current working directory.

Method of the class: WP_Filesystem_ftpsockets{}

No Hooks.

Return

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

Usage

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

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_ftpsockets::cwd() code WP 6.4.3

public function cwd() {
	$cwd = $this->ftp->pwd();

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

	return $cwd;
}