using System.Diagnostics;
ProcessStartInfo startInfo = new ProcessStartInfo("explorer.exe"); startInfo.Arguments = "C:\資料夾名稱"; Process.Start(startInfo);