C产品在市场上有哪些独特优势?
- 内容介绍
- 文章标签
- 相关推荐
本文共计206个文字,预计阅读时间需要1分钟。
mark一下以下内容:
打开文件:
1.打开文件:`System.Diagnostics.Process.Start(FilePath);`
2.打开文件夹:`System.Diagnostics.Process.Start(FilePath + / + FileName);`
3.打开文件夹中某个文件:使用IE打开文件。`System.Diagnost`
mark一下~
打开文件
1.打开文件夹:
System.Diagnostics.Process.Start(FilePath);-- 打开文件夹 System.Diagnostics.Process.Start(FilePath+"/"+FileName); -- 打开文件夹中某个文件
2.用IE打开文件:
System.Diagnostics.Process.Start("Explorer",FilePath+"\\"+FileName);
--"Explorer.exe",.exe可以省略
3.打开文件夹并选中单个文件:
System.Diagnostics.Process.Start("Explorer", "/select,"+ FilePath+"\\"+FileName);
注:“/select”参数后面有逗号。
本文共计206个文字,预计阅读时间需要1分钟。
mark一下以下内容:
打开文件:
1.打开文件:`System.Diagnostics.Process.Start(FilePath);`
2.打开文件夹:`System.Diagnostics.Process.Start(FilePath + / + FileName);`
3.打开文件夹中某个文件:使用IE打开文件。`System.Diagnost`
mark一下~
打开文件
1.打开文件夹:
System.Diagnostics.Process.Start(FilePath);-- 打开文件夹 System.Diagnostics.Process.Start(FilePath+"/"+FileName); -- 打开文件夹中某个文件
2.用IE打开文件:
System.Diagnostics.Process.Start("Explorer",FilePath+"\\"+FileName);
--"Explorer.exe",.exe可以省略
3.打开文件夹并选中单个文件:
System.Diagnostics.Process.Start("Explorer", "/select,"+ FilePath+"\\"+FileName);
注:“/select”参数后面有逗号。

