Azure Storage File Writer Component
The Azure Storage File Writer writes the File Data objects passed into the component to the target directory in the File Share.
Data Governance
The CIFS Writer component will record the storage of each file it writes in the database in the Data Governance System.
Input Channels
default — Uploads the FileData objects received on this input channel to the target directory in the File Share.
Output Channels
success — Returns a SimpleMappedData object indicating that a FileData object was successfully uploaded to the File Transfer Server. The object contains the full path where the file was written on the File Share.
failure — Returns a SignalData object indicating that a FileData objects was not successfully uploaded to the File Share.
error — Returns an ErrorOutput object when there is an error communicating with the File Share.
Parameters
resource — The Azure Storage Account Resource specifying the Storage Account containing the File Share where files will be written.
basePath — (String) The directory in the File Share to which all the input Files will be written.
ignoreFilePath — (boolean, default: false) Specifies whether the path included in the incoming files should be ignored or not. If this is false, the files will be uploaded into a subdirectory on the server matching the file’s path, relative to the components basePath. If this is true, the path is ignored, and the file will be uploaded directly into the basePath.