How to open the file in folder

My requirement is
First select one spicipic html.file in floder.
And paste into the browser and open the file and Extract data in file

Hi @Vishnu_Reddy1

You can try with For each File in Folder activity

Regards
Gokul

use Directory.GetDirectories(path) to get all the folders in a specific path and use Directory.Getfiles(folder) to get all the files in that specific folder

Hi Gokul

My requirement is
First select one spicipic html.file .
And paste into the browser and open the file and Extract data in file

Please help me …

directory.getfiles(“folderpath”,“filename*.html”)

Hello @Vishnu_Reddy1

Do you need only html files? If yes you can do as below

  1. Directory.GetFiles(“folder path”,“*.html”). This will give you the list of files with html format.
  2. You for each activity and loop through the above array.
    3)Use application\browser and put the value of each item.