Save subfolder name to variable

@Jack_Seven_Offsuit

You can try as below to get all the folders in the path

  1. Declare a String variable let’s say as ListofFolders
  2. Use Assign activity and write as below
    ListofFolders = Directory.GetDirectories(“C:\users\00001”)
  3. Use For Each activity and change the TypeArgument to String in properties
  4. 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

1 Like