Open each folders with random numbers

Hello,

How do I open each folder starting with VS(numbers is Randoms ) and copy the subfolders ? Capture

@nibu,

here are the steps to do :

  1. Use Directory.GetFiles(Path) to get the files inside the parent folder and are stored in a string array
  2. Then loop through the array and check if the value starts with VS using string manipulations
  3. If it is, in then condition, use again Directory.Getfiles and pass the item value in that.
  4. use again for each activity and inside the body, use Move Files activity

Hope it helps :slight_smile:

Thank you. can you share sample ? @HareeshMR

Here it is :slight_smile: @nibu

Main.xaml (8.6 KB)

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