C# 打开文件/跳转链接
2021-02-03 09:13
标签:selector 参数 文件夹 filename xpl style string 跳转 ring mark一下~ 1.打开文件夹: 2.用IE打开文件: --"Explorer.exe",.exe可以省略 3.打开文件夹并选中单个文件: 注:“/select”参数后面有逗号。 C# 打开文件/跳转链接 标签:selector 参数 文件夹 filename xpl style string 跳转 ring 原文地址:https://www.cnblogs.com/kybs0/p/11517524.html打开文件
System.Diagnostics.Process.Start(FilePath);-- 打开文件夹
System.Diagnostics.Process.Start(FilePath+"/"+FileName); -- 打开文件夹中某个文件
System.Diagnostics.Process.Start("Explorer",FilePath+"\\"+FileName);
System.Diagnostics.Process.Start("Explorer", "/select,"+ FilePath+"\\"+FileName);
跳转链接
上一篇:c# IComparable与IComparer接口
下一篇:c# 简单工厂模式