If I understand correctly, how about something like this?
for /R "D:\Test\files" %%f in (*.txt) do ( "C:\Program Files (x86)\Google\Chrome\Application\Chrome.exe" %%~f ) pause
This will find all .txt
files in a folder, then open them each in Chrome: