How to connect database in UiPath( which activity I need to use connect Excel as database)
I need to connect Excel file as database which activity I used to connect this one.
In real-time sceario where will be stored username and password to connect database
In one folder there is n number of PDFs so I want to read pdf name like Shiva.13/01/2024
How to read the pdf name.
So it will be a 50 gb storage of the pdf like n number of PDFs so if I using loop means it will be difficult to automated the process. Which way is I need to be automated the process without loop.
Directory.GetFiles("YourFolderPath", "*.pdf").Where(Function(filePath) File.GetCreationTime(filePath).Date = DateTime.Now.Date) ----> Array of data
Directory.GetFiles("YourFolderPath", "*.pdf").Where(Function(filePath) File.GetCreationTime(filePath).Date = DateTime.Now.Date)(0) ---> To get 1st file