Öffnet ein Explorer-Fenster und markiert eine Datei (oder einen Ordner).
string fileToSelect = @"C:\Windows\notepad.exe";
Process process = new Process();
process.StartInfo.FileName = "explorer.exe";
process.StartInfo.Arguments = string.Format("/e,/select,\"{0}\"", fileToSelect);
process.Start();
1 Kommentare zum Snippet