Qt 6.11 is out! See what's new in the release
blog
How to wrıte to text file without add resource file?
-
I have a text file that can be modified by the user. When I run my project as .exe, I cannot write to my text file that I added as a resource. I learned resources is read-olny. Is there any way I can do this?
-
Hi
well, you write it to a new file and let the user modify that.
On start up, if app sees this new file it uses that instead of the one in the resource.
You can use
https://doc.qt.io/qt-6/qstandardpaths.html
to find good place for the file.