Hello Everyone,
I've been using python-for-android to access the app storage. Now I'm trying to switch and use plyer. The main reason is because I work on windows and python-for-android requires to work on Linux. I know creating a VM with ubuntu is unavoidable, but at the moment windows is where I am.
I've been using:
from android.storage import app_storage_path
settings_path = app_storage_path()
If I understood well, the alternative in Plyer is:
from plyer import plyer.facades.StoragePath
plyer.facades.StoragePath.get_application_dir()
Am I importing and using the method correctly?
Also, although python-for-android has only 3 options to access the storage, they are quite clear and straight forward. But on plyer, I'm not clear about some.
get_external_storage_dir()
get_home_dir()
What is the difference between these? I could understand the external as the external SD card, but plyer actually comes with get_sdcard_dir() also.