[Qt-interest] Writing file.
Tim W
timpie.w at gmail.com
Wed Apr 8 12:29:29 CEST 2009
>Can anyone please check whats wrong in this why it’s not writing the data
onto the file.
The file object will telll you what is wrong ...
QFile filewrite("profile_n.grd");
if( filewrite.open(QIODevice::WriteOnly) )
{
QTextStream out(&filewrite);
out << "." << "\n";
}
else
{
qDebug() << filewrite.errorString();
}
---
An Apple a day keeps Windows away
ACCU - http://www.accu.org - Professionalism in Programming.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.qt-project.org/pipermail/qt-interest-old/attachments/20090408/51cbf412/attachment.html
More information about the Qt-interest-old
mailing list