- Home /
Where are files stored after 'caching' by Unity Addressable?
I am proceeding with file management and downloading from server through Addressable.
When I downloaded the file from the server through Addressable, I checked that a json file about the Bundle was created in LocalLow. However, I couldn't find the file for the bundle itself. I am afraid that the 'Caching' work on the device has not been done properly. Because the AWS S3 once charged me a huge charge.... So I looked up the AWS S3's Access Server Log, but they don't seem to show kindly.
Summary Question: Where is the Addressable Bundle file stored?
@UnityBill
Answer by syedali · Jan 23 at 05:50 PM
If you are looking for addressable location in windows using Unity Editor then here is the location: Assuming your package name is : com.DefaultCompany.Addressables
C:\Users\\AppData\LocalLow\Unity\DefaultCompany_Addressables
On Android location is: InternalSharedStorage>Android>data>com.DefaultCompany.Addressables>cache>vulkan_pso_cache.bin
Your answer
Follow this Question
Related Questions
How can I read binary files from Resources 6 Answers
Best way to manage hundreds of materials? 1 Answer
Simple, Using a script to assign a shader 1 Answer
What is the memory usage of Resources assets on iOS? 1 Answer
How can I overcome the 2GB Resource File Limit and load more than 2GB of assets into the scene? 1 Answer