Make current explorer.exe window select a file
问题 my program runs on the background and I wanted it, given that I have explorer.exe windows open for example in My Music folder to select(Not open) "test.txt". But when I run my code(see below) It opens a new window with the file selected. I want it to just select the file, on the window that's already open. Code: string pathname = "c:\DocTest\Test.txt"; ProcessStartInfo l_psi = new ProcessStartInfo(); l_psi.Filename = "Explorer"; l_psi.Arguments = string.Format(@"/select, " + @ "" + pathname);