HI @C99
Just use like this in the Create folder activity
"C:\Users\UserName\Documents\"+DateTime.Now.ToString("yyyy")
DateTime.Now.ToString("yyyy")-> This will get the current year (2022)
DateTime.Now.AddYears(-1).ToString("yyyy") -> this will get the previous Year (2021)
DateTime.Now.AddYears(1).ToString("yyyy")-> this will get the Next Year (2023)
Regards
Gokul