NukeViet\Ftp\Ftp::rename PHP Method

rename() public method

public rename ( $old, $new )
    public function rename($old, $new)
    {
        if (!$this->check_login()) {
            return false;
        }
        return ftp_rename($this->conn_id, $old, $new);
    }