Now I am able to download and write all the content using the readyRead()
Qt Code:
  1. m_reply = m_manager->get(m_request);
  2.  
  3. connect(m_reply,SIGNAL(readyRead()),this,SLOT(readingReadyBytes()));
  4.  
  5.  
  6. void zoushoFtpTransfer::readingReadyBytes()
  7. {
  8. QFile file(m_localPath);
  9. file.open(QIODevice::writeOnly);
  10. file.write(m_reply->read(m_reply->bytesAvailable()));
  11. file.close();
  12. qDebug()<<"size : "<<file.size();
  13. m_isDownloadSccess = true;
  14. }
To copy to clipboard, switch view to plain text mode 

Again there is one more issue, after writing onto file, I am storing all the data for that file in QByteArray.
Its storing in QBytearray till 134459022 of data, after which bad_alloc error is thrown.

Let me know what data type can be used to store all the 318459022 size of data