C#打开文件所在的文件夹

Process open = new Process();
open.StartInfo.FileName = "explorer";
open.StartInfo.Arguments = @"/select," + location;
open.Start();

posted @ 2011-04-16 11:30  梦幻泡影  阅读(779)  评论(0编辑  收藏  举报