I'm programming a download manager and I'm trying to implement the "Show Containing Folder" feature that you would find in Firefox.
This is what I have so far:
This simply opens the folder but in Firefox, it hilights the file. How would I do that?
This is what I have so far:
Code:
Process proc = new Process(); proc.StartInfo.FileName = "explorer.exe"; proc.StartInfo.Arguments = dlPath; proc.Start();
Comment