C# 窗体程序和控制台应用程序怎么超链接打开本地的一个文件如:我的电脑

2024-11-23 12:17:13
推荐回答(1个)
回答1:

打开文件夹, 例如:[C:\Windows]
System.Diagnostics.Process.Start("explorer", "/n, C:\\Windows");

打开[我的电脑]
System.Diagnostics.Process.Start("explorer","/n,/select, C:\\");

打开文本文件, 例如:[C:\test.txt]
System.Diagnostics.Process.Start("explorer", "/n, C:\\test.txt");

打开应用程序, 例如:计算器
System.Diagnostics.Process.Start("C:\\Windows\\system32\\calc.exe");

以上这些都会在新窗口中打开,外边加个循环就可以了. 只实验了10次的,没有问题,不知道太多了会有什么问题出现.