ftp_base::rmdirpublicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ftp_base = new ftp_base();
$ftp_base->rmdir( $pathname );
$pathname(required)
.

ftp_base::rmdir() code WP 7.0

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