打开我的电脑
如何实现当我们单击button1(控件名称)时,,,,打开我的电脑呢?
单击button2(控件名称)时打开一个指定的文件夹.
System.Diagnostics.Process.Start("Explorer.exe", "C:\")
附加:
Public Shared Function Start(ByVal fileName As String, ByVal arguments As String) As System.Diagnostics.Process
成员属于: System.Diagnostics.Process
摘要:
通过指定应用程序的名称和一组命令行参数来启动进程资源,并将该资源与新的 System.Diagnostics.Process 组件关联。
参数:
fileName: 要在该进程中运行的应用程序文件的名称。
arguments: 启动该进程时要传递的命令行参数。
返回值:
与该进程关联的新的 System.Diagnostics.Process 组件,或者如果没有启动进程资源(例如,如果重用了现有进程),则为 null。