I'm using DiskLruCache in my project. It works great but I would like to know if it's possible to create sub directories under the root cache directory.
- DiskLruCache is a popular project on https://github.com/JakeWharton/DiskLruCache
For example:
MainCache (Create by DiskLruCache.open function with 1GB limit)
|
--> Dir A
| |
| ---> Dir C
|
|
--> Dir B
The total size of files under MainCache and its subdirectory should still be complied with 1GB policy.