ftp_base::rename

Advertisement

Syntax Syntax

ftp_base::rename( $from,  $to )

Source Source

File: wp-admin/includes/class-ftp.php

	function rename($from, $to) {
		if(!$this->_exec("RNFR ".$from, "rename")) return FALSE;
		if(!$this->_checkCode()) return FALSE;
		if($this->_code==350) {
			if(!$this->_exec("RNTO ".$to, "rename")) return FALSE;
			if(!$this->_checkCode()) return FALSE;
		} else return FALSE;
		return TRUE;
	}

Advertisement

Advertisement

Leave a Reply