Hello,
I’m using Session State to perform some initialization at the first opening of the app; at this stage, some temporary files are also generated: they are used by the app (without been recreated at each run, thanks to the session state).
However, I do not understand how to properly delete them when the user finally leaves and they end up filling up my disk space.
As a workaround, I could delete the oldest tmp file at the initialization stage… but that’s not a very clean solution.
Any help is appreciated.