Is it possible to access File System (temp folder or AppData) from browser and use it for caching in Angular 16
We display files to user from a remote source. Sometimes we have very large files that cab be few GBs in size. The problem comes when users opens same large file frequently. Whenever the user opens a file front-end has to request file from remote source and it takes quite sometime for the file to download and open for the user. My question is “is there a solution where we can utilize File-System of user’s machine to cache those large files” so that front-end does not have to request and fetch the file from remote source on each request?