📌  相关文章
📜  c# windows 窗体在资源管理器中打开目录 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:08.554000             🧑  作者: Mango

代码示例1
// opens the folder in explorer
Process.Start(@"c:\temp");
// opens the folder in explorer
Process.Start("explorer.exe", @"c:\temp");
// throws exception
Process.Start(@"c:\does_not_exist");
// opens explorer, showing some other folder)
Process.Start("explorer.exe", @"c:\does_not_exist");