I am struggling with the following issue. In a configuration file I need to access the general path for the external memory card.
This is usually done by reading the %SDCARD% system variable.
However, the makers of my phone created two partitions of the internal memory, and the second partition is mounted as "sdcard". This results in the %SDCARD%" variable returning the path to the second partition of the internal memory, rather than the externally inserted SD Card.
The SD Card is actually mounted "sdcard-ext". Is there a system variable that returns the generic path to this volume to be used in a generic path, such as
folder = "%SDCARD-EXT%/Subfolder1/Subfolder2"
to access Subfolder2 on the external card?
Thank you in advance for the help!