How to specify a path in Parent folder of Office365.Activities.Files.CreateFolderConnections

I created a folder using Office 365 Activities.Files.CreateFolderConnections, and now I need to create a subfolder inside this folder. However, I can’t seem to find a way to specify the path of this subfolder in the next activity.

Someone has some hint of how to do it ?
Tks.

Hi, @egameiro When you create the main folder, store the output (let’s say parentFolder). Then for the subfolder, use another Create Folder activity and in Parent Folder ID, just put parentFolder.Id.

Example

MainFolder = Create Folder (“Reports”)

SubFolder = Create Folder (“Invoices”, ParentFolderID: MainFolder.Id)

It worked fine.
Thanks Arjun

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