What directories can we save files to from a DataFlow? #37
-
Are there any directories we can save a file to from within a DataFlow other than the run directory specific to the current run? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The solution was to add network service permissions to the desired directory. |
Beta Was this translation helpful? Give feedback.
-
In Composable, files can be saved to any directory that the Composable instance has access to. This includes:
File Handling Modules in ComposableComposable provides two sets of file-handling Modules:
Example ComparisonFile Saver Module (Uses the network service account)
Inputs:
Outputs:
Credential File Saver Module (Uses user-supplied credentials)
Inputs: (Same as File Saver, plus one extra field)
Outputs: (Same as File Saver) By choosing the appropriate Module, you can control whether to rely on the network service account's permissions or use specific credentials for accessing files. |
Beta Was this translation helpful? Give feedback.
In Composable, files can be saved to any directory that the Composable instance has access to. This includes:
File Handling Modules in Composable
Composable provides two sets of file-handling Modules:
Modules without "Credential" in their name