Create Folder After Every Month

Hi, I want to save downloaded attachments from mail in a folder that will be month wise.
Bot will create a folder for every month and save those attachments during a month and in next month it will create another folder and save the attachments from the next month in that folder. Can this be done?

yes its possible

ok, can you please explain the process?
can this be done without using the orchestrator?

  1. Get current month
  2. Get directors of specific PATH
  3. check if path exist with current month.
  4. If so, Save to he Path.
  5. else → Create new folder
1 Like

use if else to check is that folder already exist if yes download in that else create a folder using the path

filePath/FileName_“+Now.Month.ToString+”_"+Now.Year.ToString

1 Like

use PathExist Activity to check is folder exist or not

1 Like

Test1.xaml (4.9 KB)

2 Likes

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