HomeGuidesRecipesAPI
HomeGuidesAPILog In
Guides
These docs are for v10.2. Click to read the latest docs for v31.

Save to Disk Action

Overview

The Save to Disk action allows users to save generated documents to a local or network location for later use.

Configuration

The Save to Disk action is installed by default.

To verify installation, ensure that the following line is placed within your Produce web.config.

...
  <delivery>
    <providers>
    </providers>
  </delivery>
  <action>
    <providers>
      <add name="File" type="Intelledox.Action.FileAction, Intelledox.Action" />
    </providers>
  </action>
  <datasource>
    <providers>
    </providers>
  </datasource>
...

Action Attributes

The save to disk action will copy any generated files into a specific directory or folder.

There are two input attributes and one output attribute.

Input

  • Create Folder - Can be set to true or false. If the folder cannot be found when attempting to write the file a true setting will create a folder.
  • Output Folder - The folder to write the generated document files to.

Output

  • Output Folder - The folder that the file(s) are written to, useful for passing into other actions.

🚧

Note

The Infiniti Application Pool on the server must have permission to access this folder^.

^ A little bit more information would be really helpful. Perhaps an explanation of how to find out what user account the Application Pool is running as (or where to change it) so customers can make sure that the user in question has access to the desired save location

Description

  1. Add the action to your project's finish page
  2. Modify the attributes and types as required^

^ An example or two would be really helpful. Perhaps one for a local path and one for a network location

498