C#打开文件夹

来源:互联网 发布:生产数据追溯 编辑:程序博客网 时间:2024/05/21 19:33
string path = AppDomain.CurrentDomain.BaseDirectory + "..\\MapData";
            if (Directory.Exists(path))
            {
                System.Diagnostics.Process.Start("explorer.exe", path);
            }