What directories can we save files to from a DataFlow? #37
Answered
by
andyvidan
natecdavis
asked this question in
DataFlows & Modules
|
Are there any directories we can save a file to from within a DataFlow other than the run directory specific to the current run? |
Answered by
andyvidan
Mar 11, 2025
Replies: 2 comments
|
The solution was to add network service permissions to the desired directory. |
0 replies
|
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. |
0 replies
Answer selected by
andyvidan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


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