Assign List<StorageFileInfo> item to array

Hello -

I have am trying to assign the bold items from the list (storagefileinfoAttachments) below to an array (tempArray):

List(3) { StorageFileInfo { FileFullPath=“16798\16798_EvidenceBundle_Step1.pdf”, StorageContainerFolderPath=null, StorageContainerName=“Evidence Bundle” }, StorageFileInfo { FileFullPath=“16798\16798_EvidenceBundle_Step2.pdf”, StorageContainerFolderPath=null, StorageContainerName=“Evidence Bundle” }, StorageFileInfo { FileFullPath=“16798\16798_EvidenceBundle_Step3.pdf”, StorageContainerFolderPath=null, StorageContainerName=“Evidence Bundle” } }

I presume I need to use a ‘For Each’ activity and split the items into pieces from which I can then specify the item property “FileFullPath”. Can someone help me with this?

Thanks in advance.

Regards,
symilawr

can you check following
Assign Activity:
arrFullFilePath = yourListVar.Select(Function (x) x.FileFullPath).toArray

Many thanks ppr! That worked!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.