How do i open a file with QFile with link in android -content://com.android.providers.downloads.documents/document/raw.pdf
I tried below code but its showing that the file not open
QString path("content://com.android.providers.downloads.documents/document/raw.pdf");
QUrl path_url(path);
path = path_url.toLocalFile();
QFile* file = new QFile(path);
file->open(QIODevice::ReadOnly)