WP_Filesystem_Direct::cwd()publicWP 2.5.0

Gets the current working directory.

Method of the class: WP_Filesystem_Direct{}

No Hooks.

Return

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

Usage

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

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_Direct::cwd() code WP 6.4.3

public function cwd() {
	return getcwd();
}