insert my folder into an apk

hiiiiiiii

i have some files like ( a folder that have some pictures in itself ), in my project.

i want put this folder and pictures , into my apk file. as Intact.

and when user install my game, this folder and pictures inside it, extract to user’s device. i see when a unity game installed in a device, it make a folder into ( android/data and obb).

infact i want : when my apk file installed, my own folder and the pictures that are inside it, extract into : android/data/com.company.product/files or obb/com.company.product/files folder)
or into the an address like this.

is this possible ?

Put your folders inside Assets/Resources/YourFolder/Yourfiles. Then you can load them at runtime using Resources.Load(“YourFolder/YourFile”).