Streamlit Sharing - Fileupload, where does it go?

Hi @Joe_Pawlowski -

When you upload a file using file_uploader, the data is written to RAM. It will persist in memory for a while (depending on the cache settings), but it will never persist on disk unless you choose to do that yourself.

Best,
Randy