Clear AssetBundle by name?

My application has some contents that can be downloaded according user level, when the user achieve some level I want allow him delete some contents that he doesn’t need anymore to free up disk space, but without to use Caching.CleanCache because this command would delete all the contents.

Is there a way to remove an expecific cached asset bundle by name?

Thanks in advance!

There’s no such way as far as i’m aware.

We also looked at the built-in Caching class, but since it was too basic we opted to implement our own simple cache for storing asset bundles.

Thanks ! So I’ll try implement my own cache manager for storing asset bundles too.