Hi @555gam, welcome to the Streamlit community!
When the file_uploader widget is used, no file is actually created. The return value is a BytesIO object, which stays in RAM. If you’d like to save that file somewhere, you can choose to do so.
file_uploader
BytesIO
Best, Randy