Creating Dynamic Folders

Hi UiPath,

I need help in creating dynamic folder for my automation.

lets say I want to create a main folder by year.

in addition, inside the year folder there will be sub folder for months?

is that possible in uipath?

thanks!

HI @Alvin_Apostol4

Use can try with Create folder activity

Environment.CurrentDirectory+"/"+DateTime.Now.ToString("yyyy")

Environment.CurrentDirectory+"/"+DateTime.Now.ToString("yyyy")+"/"+DateTime.Now.ToString("MM")

Regards
Gokul

1 Like

HI @Alvin_Apostol4

Have a look on the XAML file

Folder create.xaml (7.6 KB)

Regards
Gokul

2 Likes

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