Selecting a file on Android via content provider
Solved
Mobile and Embedded
-
When I select a file via QML's FileDialog and pass it along to C++, I'm able to get the base directory (sort of) and filename:
void example(const QString &folder, const QString &file) { QString filename = QFileInfo(file).fileName(); QString folderName = folder; QDir fileDir = folder; QString name = fileDir.filePath(filename); name.replace("file://", ""); qDebug() << "Filename:" << filename; qDebug() << "Dir name:" << folderName; qDebug() << "Dir:" << fileDir; qDebug() << "Final name:" << name; }
This outputs the following:
Filename: "20250305_215011.jpg" Dir name: "file:///storage/emulated/0/Android/data/com.example.example/files/Download" Dir: QDir( "file:///storage/emulated/0/Android/data/com.example.example/files/Download" , nameFilters = { "*" }, QDir::SortFlags( Name | IgnoreCase ) , QDir::Filters( Dirs|Files|Drives|AllEntries ) ) Final name: "/storage/emulated/0/Android/data/com.example.example/files/Download/20250305_215011.jpg"
Filename is correct, however, the file itself is in
/storage/emulated/0/Download
, not whatever that internal storage thing is. I can confirm this by seeing that/storage/emulated/0/Android/data/com.example.example/files/Download
is empty.How can I get the correct directory to show up here? If I can only get the app's internal download folder, how can I ensure that the file is actually copied to the internal download folder?
-
Nevermind, turns out QFile can read the
content://
URI directly. -
2/2