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
I assume you have array of folder paths in which you have to create a folder.
Follow this approach:
- Use For Each and pass the array of folder paths
- Inside For each loop, use
Create Folderactivity. InPathproperty, 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.