/tmp
directory/tmp
directory. You have of available space in /tmp
to save any file.
/tmp
across workflow runs/tmp
directory is stored on the virtual machine that runs your workflow. We call this the execution environment (“EE”). More than one EE may be created to handle high-volume workflows. And EEs can be destroyed at any time (for example, after about 10 minutes of receiving no events). This means that you should not expect to have access to files across executions. At the same time, files may remain, so you should clean them up to make sure that doesn’t affect your workflow. Use the tmp-promise
package to cleanup files after use, or delete the files manually.
/tmp
/tmp
as a string:
/tmp
fs
module to write data to /tmp
:
/tmp
/tmp
:
/tmp
/tmp
.
/tmp
/tmp
in an HTTP request.
multipart/form-data
request/tmp
, upload to Amazon S3/tmp
, and uploads them to Amazon S3.
You should also be aware of the inbound payload limits associated with the email trigger.
/tmp
directory and vice versa.
The $.files
helper includes methods to upload and download files from the Project’s File Store.
Read the File Stores $.files
helper documentation.