From 83ff89acb246583f97b9b5a06f5125f6ac6a9105 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Wed, 3 Jan 2024 17:32:04 +0100 Subject: [PATCH] (Android) Removed support for using the SAF to list directory contents --- es-core/src/utils/FileSystemUtil.cpp | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/es-core/src/utils/FileSystemUtil.cpp b/es-core/src/utils/FileSystemUtil.cpp index 8b8d8fa90..588d5ca77 100644 --- a/es-core/src/utils/FileSystemUtil.cpp +++ b/es-core/src/utils/FileSystemUtil.cpp @@ -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(