Hi,
I have attachment in txt file. I need to covert this to csv file using configconsole.. I declared a dervied field to fetch the attachment.But I am not able to convert the type to .csv.
any insights on this is highly appreciated
I'm not seeing a file attached to this message; I wonder if it was deleted?
To rename a file extension from txt to csv, you will need two FileAccess nodes. The first one will "Read from file" and the second will "Write to file" using the new filename. If you are needing to convert the contents of the read file into a different format then you'll want an Assign node between the two FileAccess nodes. Write some fancy Javascript to parse the outputData from the first FileAccess node.
I hope that helps