I have a winform application and this winform application has created few files. I want to implement “find target” function in my application to show those files. Those files located in a same folder. See the picture:

Let’s say that I have created few files in "C:\Test\" folder and this folder has this file: "C:\Test\File1.txt". How to create “find target” functionality using VB.NET?
Use
Process.Start()to start the Windows Explorer:With the
/select, [file]parameter, you can highlight the file.