ftp_base::chdir()publicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ftp_base = new ftp_base();
$ftp_base->chdir( $pathname );
$pathname (required)
-

ftp_base::chdir() code WP 6.8.1

function chdir($pathname) {
	if(!$this->_exec("CWD ".$pathname, "chdir")) return FALSE;
	if(!$this->_checkCode()) return FALSE;
	return TRUE;
}