I want create one folder in that many sub folder

i want create one folder in that many sub folder
i used loop and get some names so use that names to get sub folders

@Ejaz_Ab,

I assume you have array of folder paths in which you have to create a folder.

Follow this approach:

  1. Use For Each and pass the array of folder paths
  2. Inside For each loop, use Create Folder activity. In Path property, pass this expression - Path.Combine(currentPathVariable,"TheNewFolderYouWantToCreate")

This approach will create a TheNewFolderYouWantToCreate in every folder you are iterating.

3 Likes

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