-
【C#】在Windows资源管理器打开文件夹,并选中指定的文件或文件夹
因软件里使用了第三方插件,第三方插件的日志文件夹存在路径不止一个,并且可能层级较深。
为便于运维人员和最终用户使用,在界面上增加一个“打开XX文件夹”的按钮,点击时,打开第三方插件日志文件夹所在的上级文件夹,并选中其下级指定名称的若干个文件和文件夹。
原本已有选中单个文件的用法,现在要的是选中多个文件的用法,较选中单个的复杂。
先看选中多个的:
函数定义:
namespace MyNameSpace { public class FileHelper { [DllImport("shell32.dll", ExactSpelling = true)] public static extern int SHOpenFolderAndSelectItems(IntPtr pidlFolder, uint cidl, [In, MarshalAs(UnmanagedType.LPArray)] IntPtr[] apidl, uint dwFlags); [DllImport("shell32.dll", CharSet = CharSet.Auto)] public static extern IntPtr ILCreateFromPath([MarshalAs(UnmanagedType.LPTStr)] string pszPath); } /// <summary> /// 在Windows资源管理器打开文件夹,并选中指定的文件或文件夹 /// </summary> /// <param name="folderPath">文件夹路径</param> /// <param name="filesToSelect">要选中的文件或文件夹路径</param> public static void OpenFolderAndSelectFiles(string folderPath, params string[] filesToSelect) { IntPtr dir = ILCreateFromPath(folderPath); var filesToSelectIntPtrs = new IntPtr[filesToSelect.Length]; for (int i = 0; i < filesToSelect.Length; i++) { filesToSelectIntPtrs[i] = ILCreateFromPath(filesToSelect[i]); } SHOpenFolderAndSelectItems(dir, (uint)filesToSelect.Length, filesToSelectIntPtrs, 0); ReleaseComObject(dir); ReleaseComObject(filesToSelectIntPtrs); } }
调用:
FileHelper.OpenFolderAndSelectFiles(@"D:\testApp", new string[] { @"D:\testApp\somefilder\log1", @"D:\testApp\somefilder\log2" });
选中的对象支持文件和文件夹混合使用。
以上内容参考资料:
https://stackoverflow.com/questions/9355/programmatically-select-multiple-files-in-windows-explorer
顺便贴一下选中单个文件的用法:
namespace MyNamespace { /// <summary> /// 按窗口句柄置顶窗口 /// </summary> /// <param name="hwnd">窗口句柄</param> [DllImport("user32.dll", EntryPoint = "SetForegroundWindow", SetLastError = true)] internal static extern void SetForegroundWindow(IntPtr hwnd); public static void ExploreFile(string filePath) { if (string.IsNullOrEmpty(filePath) || !File.Exists(filePath)) { return; } //打开资源管理器并选中文件 Process process = new Process(); process.StartInfo.FileName = "explorer"; process.StartInfo.Arguments = @"/select, " + filePath; process.Start(); SetForegroundWindow(process.MainWindowHandle);//置顶一下 } } }
出处:https://www.cnblogs.com/tods/p/17614343.html
栏目列表
最新更新
python爬虫及其可视化
使用python爬取豆瓣电影短评评论内容
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比