SDL_GetAndroidCachePath - Get the path used for caching data for this Android application.
Contents
Availability
This function is available since SDL 3.2.0.
Description
This path is unique to your application, but is public and can be written to by other applications.
Your cache path is typically: /data/data/your.app.package/cache/ .
This is a C wrapper over android.content.Context.getCacheDir() :
https://developer.android.com/reference/android/content/Context#getCacheDir()
Header File
Defined in SDL3/SDL_system.h
Name
SDL_GetAndroidCachePath - Get the path used for caching data for this Android application.
Return Value
Returns the path used for caches for this application on success or NULL on failure; call SDL_GetError ()
for more information.
See Also
•(3), SDL_GetAndroidInternalStoragePath(3), •(3), SDL_GetAndroidExternalStoragePath(3) Simple Directmedia Layer SDL 3.2.10 SDL_GetAndroidCachePath(3)
Synopsis
#include"SDL3/SDL.h"constchar*SDL_GetAndroidCachePath(void);
