punnipah
(Punnipah)
February 8, 2022, 7:01am
1
Hi,
In my Flow I create Type into in a box. and Next Step i would like to Type Date Format is Form the current date, the past 23 days do not include weekends and public holidays.
Ex : 07.01.2022
Could you Please to Advise Code Format Date Time
Thank you.
Gokul001
(Gokul Balaji)
February 8, 2022, 7:06am
2
Hi @punnipah
Have a look on this thread, it will help you
Hi
Hope the below steps would help you resolve this
Use this website to get the holidays of Canada or any country you want and do a data scrapping and save it as a datatable named dt_holidays
Now use a Assign activity like this
arr_files = Directory.GetFiles(“your folder path”).[Select](Function(f) New FileInfo(f)).Where(Function(f) f.LastWriteTime < CDate(DateTime.Now.AddDays(-5).ToString(“MM/dd/yyyy”))).ToArray()
Where arr_files is a array of string type
Use another assign activit…
Regards
Gokul
2 Likes
system
(system)
Closed
February 11, 2022, 7:31am
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.