Feedback

C# - Explorer starten und Datei selektieren

Veröffentlicht von am 8/11/2009
(1 Bewertungen)
Ö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

Sperneder Patrick schrieb am 8/15/2009:
In diesem Falle würde ich jedoch die statische Methode der Klasse Process vorziehen : ( Ich stehe halt auf Einzeiler )
Process.Start(new ProcessStartInfo("explorer.exe", String.Format("/e,/select,\"{0}\"", fileToSelect));
 

Logge dich ein, um hier zu kommentieren!