Find Folder Path

I have a folder and folder has multiple sub folder and in sub folder have xml file can i extract the xlm path and in xml have tags("title date,issue date) can i extract and paste in another excel with path and xml name and extacted data.

Hi @himanshur

Use this

Directory.GetFiles(targetDirectory, “*.txt”, SearchOption.AllDirectories)

And then use deserialize xml and use for each item and use write range

Thanks
Ashwin.S

please explain with example