Hi all,
I am trying to click the folder whose name is varying according to the date_value. But I was not able to achieve it. Can anyone suggest me to how to give the selector to done the same?>
Hi all,
I am trying to click the folder whose name is varying according to the date_value. But I was not able to achieve it. Can anyone suggest me to how to give the selector to done the same?>
I had same files inside that folder for the purpose of retrieving some data.
Could you show me screenshot of that folder names. So that I can tell you how to read the files without opening folder and all.
In this case the path is dynamic in the way, I have to choose the year folder(eg:2019), inside it I have to choose the month folder(eg:DEC), and then the Date folder(eg:24), beside which the file exists.
Then try this one. It will read all files from that folder.
arrFiles [] = Directory.GetFiles("Parent FolderPath"+"\"+Now.ToString("yyyy")+"\"+Now.ToString("MMMM")+"\"+Now.ToString("dd"))
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.