Notice! This document is currently in Archived status.
The content of this document may be incorrect or outdated.

Print this article Edit this article

Setting the filename for generated files for download

Purpose

When creating dynamically generated output, you may want to set the default filename which will be provided if the file is saved. This example shows how to specify the default filename used in the "Save file as" dialog box.

From a Python Script

filename = 'MySpecifiedFilename.txt' RESPONSE.setHeader('Content-Disposition', 'attachment; filename=%s' % (filename));

From DTML

<dtml-call "RESPONSE.setHeader('Content-Disposition', 'attachment; filename=MySpecifiedFilname.txt')"><br />

Additional Notes

Additionally, you may wish to force the browser to prompt to save the file. Dependent on the configuration of the client browser, the save dialog box will appear with the name of the file set as above. You can do that by setting the following header:

RESPONSE.setHeader('Content-Type', 'application/force-download');<br />

Last Modified: Aug 1, 2023 4:07 pm GMT-4
Created: Mar 22, 2007 4:32 pm GMT-4 by admin
JumpURL: