C# 窗体程序打开本地文件夹或文件

打开文件夹:

例如:C:\Windows

System.Diagnostics.Process.Start("explorer", "/n, C:\\Windows");

打开文件:

例如:C:\abc.txt

System.Diagnostics.Process.Start("explorer", "/n, C:\\abc.txt");

打开应用程序:

例如:打开控制面板

System.Diagnostics.Process.Start("C:\\Windows\\system32\\control.exe");
    原文作者:爱写代码的小R
    原文地址: https://blog.csdn.net/weixin_44839439/article/details/115653977
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞