Does anyone know if the resource files can be written?
I'm using txt files as resource and i can read them but can't write.
There are no permission restrictions.
Printable View
Does anyone know if the resource files can be written?
I'm using txt files as resource and i can read them but can't write.
There are no permission restrictions.
Resource files can't be written to.
Qt resource files (.qrc) are compiled into the executable, so they are not writeable. If you want writeable resources, then just use plain old files on disk. Put them in a user directory (see QDesktopServices to obtain all standard user locations.)