2012年3月15日 星期四

026-開啟資料夾

using System.Diagnostics;

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