I have a process in which I need to extract the full path of an attachment obtained from an email that has been saved in a folder.
When I use the Save attachment activity, it saves it in a variable of type IEnumerable
How can I obtain from this variable the full path where the file was saved?
I can’t use a for each, because I already have it inside a for each email and I need to upload the file path one by one to the orchestrator queue. Is there a way to extract the path from the IEnumerable type variable?
Because for each of the emails, each attachment is saved in a folder. And I need to upload to the queue the path of each of the attachments and the sender, the email address of the person who sent it.
I need to upload in each queue item the full path of the file and the email address of the person who sent it.
That’s why I’m looking if there is any way to extract the path of the attachment that is in the output of the save attachment activity, which is of type IEnumerable