You can try as below to get all the folders in the path
- Declare a String variable let’s say as ListofFolders
- Use Assign activity and write as below
ListofFolders = Directory.GetDirectories(“C:\users\00001”) - Use For Each activity and change the TypeArgument to String in properties
- Inside For Each you can keep a write line message and write as Item.ToString which will give you the all the each directory it contains
Hope this may help you
Thanks