Getting paths of qrc files in Qt
I want to know how to access the paths of files in the qrc file in order to use them as strings in an array. An example of qrc file is:
images/1.jpg
images/2.jpg
images/3.jpg
images/4.jpg
I want to use it in the following manner:
for(int i=0;i<4;i++)
{
path=image_path[i];
}
where path is an qlist that can be later used for accessing the respective images.