Store to File
Synopsis
This operator wraps the given input as a file object.
Description
The operator is intended to be used in combination with another write operator: the operator wraps the given input object as a file object that can be passed to any operator ingesting file objects.
The operator does not write or convert any data during its own runtime. Instead, the returned file object will trigger the conversion when used by a subsequent operator.
Input
input
The input object to be wrapped. Not supported are connections, collections and files.
Output
file
The wrapped input object.
through
Passes through the input object.
Differentiation
Store (Deprecated)
The Store (Deprecated) operator stores the IO object in a Repository location while the Store to File operator converts it to a file that can then be stored with another operator. Furthermore, while almost all IO objects can be stored with the Store (Deprecated) operator, the Store to File operator does not support connections and collections.