Download file and change file name

 I would like to add a button to a form to allow the user to download that file to their local PC.  How do I do that? Also, how can I specify a different file name for the file?

Comments

  • Forms have two different components, "File Download" for downloading one file and "Multiple File Download" for downloading any amount of files; you can even download all the files at once in a zip. Both of these inputs can take in FileData or FileReferences so you can easily map the output of your previous steps into the inputs for the form you are using with one of these components to download your file.

    You can use a "Mapping Step" to rename the file. Just select the "Build Data" option on the FileData variable and change the "FileName" there. You have to remember to append the file extension to the new file name here, or else the file will download as a generic system file and not as a specific file type.

Sign In or Register to comment.