logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_GetAndroidInternalStoragePath - Get the path used for internal storage for this Android application.

Availability

       This function is available since SDL 3.2.0.

Description

       This path is unique to your application and cannot be written to by other applications.

       Your internal storage path is typically: /data/data/your.app.package/files.

       This is a C wrapper over android.content.Context.getFilesDir():

       https://developer.android.com/reference/android/content/Context#getFilesDir()

Name

       SDL_GetAndroidInternalStoragePath - Get the path used for internal storage for this Android application.

Return Value

       for more information.

See Also

SDL_GetAndroidExternalStoragePath(3), SDL_GetAndroidCachePath(3)

Simple Directmedia Layer                           SDL 3.2.20               SDL_GetAndroidInternalStoragePath(3)

Synopsis

#include<SDL3/SDL_system.h>constchar*SDL_GetAndroidInternalStoragePath(void);

See Also