(Android) Removed support for using the SAF to list directory contents

This commit is contained in:
Leon Styhre 2024-01-03 17:32:04 +01:00
parent d934cfb48f
commit 83ff89acb2

View file

@ -70,28 +70,6 @@ namespace Utils
if (!isDirectory(genericPath))
return contentList;
#if defined(__ANDROID__)
if (path.substr(0, FileSystemVariables::sAppDataDirectory.length()) ==
FileSystemVariables::sAppDataDirectory) {
Utils::Platform::Android::getDirContent(
path.substr(FileSystemVariables::sAppDataDirectory.length() + 1),
FileSystemVariables::sAppDataDirectory, AndroidVariables::sAppDataPathID,
recursive, contentList);
contentList.sort();
return contentList;
}
if (path.substr(0, AndroidVariables::sROMDirectory.length()) ==
AndroidVariables::sROMDirectory) {
Utils::Platform::Android::getDirContent(
path.substr(AndroidVariables::sROMDirectory.length()),
AndroidVariables::sROMDirectory, AndroidVariables::sRomPathID, recursive,
contentList);
contentList.sort();
return contentList;
}
#endif
if (recursive) {
#if defined(_WIN64)
for (auto& entry : std::filesystem::recursive_directory_iterator(