打开文件夹, 例如:[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次的,没有问题,不知道太多了会有什么问题出现.