Yes, of course it is possible. QDir::mkdir() or QDir::mkpath() are the way to go.
Yes, of course it is possible. QDir::mkdir() or QDir::mkpath() are the way to go.
Hey. Thanks for your reply.
Can you tell me one more thing. Why does this code not work:
Qt Code:
void MojeOkno::vpisiVpisaneVrednosti() { out << "Let's see if it works." << endl; file.close(); }To copy to clipboard, switch view to plain text mode
It does not save the string in test.text.
Last edited by wysota; 13th March 2007 at 20:56. Reason: Corrected the bbcode
you forgot to open the file:
Qt Code:
void MojeOkno::vpisiVpisaneVrednosti() { out << "Let's see if it works." << endl; file.close(); }To copy to clipboard, switch view to plain text mode
Bookmarks