mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
(Android) Removed symlink support
This commit is contained in:
parent
630ff4a0d7
commit
a49f22144f
|
@ -1000,6 +1000,11 @@ namespace Utils
|
|||
|
||||
bool isSymlink(const std::string& path)
|
||||
{
|
||||
#if defined(__ANDROID__)
|
||||
// Symlinks are generally not supported on Android due to the Storage Access Framework
|
||||
// and the use of FAT/exFAT and NTFS filesystems.
|
||||
return false;
|
||||
#endif
|
||||
const std::string& genericPath {getGenericPath(path)};
|
||||
try {
|
||||
#if defined(_WIN64)
|
||||
|
|
Loading…
Reference in a new issue