Diese kleine Methode öffnet das übergebene Verzeichnis im Windows Explorer.
Aufruf:
OpenExplorer(@"C:\temp");
benötigte usings:using System.Diagnostics;
using System.IO;
private static void OpenExplorer(string path)
{
if (Directory.Exists(path))
Process.Start("explorer.exe", path);
}
Kommentare zum Snippet