Can I get the file name after filepicker is finished?

I have a form with a textbox, filepicker, and a submit button. The filepicker is just used to select a file, the "After file selected" is blank. I have the submit button run the processing of the file by POSTing it to my API with multipart/form-data. Is there a way to place the selected filepicker filename in the text box so the user knows that they have chosen the correct file for processing?

Hey Louis! You should be able to make a text component with the value: {{filePickerName.file.name}}, replacing filePickerName with the name of your file picker. To confirm this I looked at the left hand panel (you can expand it in the center of the top bar) and looked at the properties of the file picker. It helps you see what fields are available to use.