翼度科技»论坛 编程开发 .net 查看内容

【C#】在Windows资源管理器打开文件夹,并选中指定的文件或文件夹

2

主题

2

帖子

6

积分

新手上路

Rank: 1

积分
6
因软件里使用了第三方插件,第三方插件的日志文件夹存在路径不止一个,并且可能层级较深。
为便于运维人员和最终用户使用,在界面上增加一个“打开XX文件夹”的按钮,点击时,打开第三方插件日志文件夹所在的上级文件夹,并选中其下级指定名称的若干个文件和文件夹。
原本已有选中单个文件的用法,现在要的是选中多个文件的用法,较选中单个的复杂。
先看选中多个的:
函数定义:
  1. namespace MyNameSpace
  2. {
  3.     public class FileHelper
  4.     {
  5.         [DllImport("shell32.dll", ExactSpelling = true)]
  6.         public static extern int SHOpenFolderAndSelectItems(IntPtr pidlFolder, uint cidl, [In, MarshalAs(UnmanagedType.LPArray)] IntPtr[] apidl, uint dwFlags);
  7.         [DllImport("shell32.dll", CharSet = CharSet.Auto)]
  8.         public static extern IntPtr ILCreateFromPath([MarshalAs(UnmanagedType.LPTStr)] string pszPath);
  9.     }
  10.         /// <summary>
  11.         /// 在Windows资源管理器打开文件夹,并选中指定的文件或文件夹
  12.         /// </summary>
  13.         /// <param name="folderPath">文件夹路径</param>
  14.         /// <param name="filesToSelect">要选中的文件或文件夹路径</param>
  15.         public static void OpenFolderAndSelectFiles(string folderPath, params string[] filesToSelect)
  16.         {
  17.             IntPtr dir = ILCreateFromPath(folderPath);
  18.             var filesToSelectIntPtrs = new IntPtr[filesToSelect.Length];
  19.             for (int i = 0; i < filesToSelect.Length; i++)
  20.             {
  21.                 filesToSelectIntPtrs[i] = ILCreateFromPath(filesToSelect[i]);
  22.             }
  23.             SHOpenFolderAndSelectItems(dir, (uint)filesToSelect.Length, filesToSelectIntPtrs, 0);
  24.             ReleaseComObject(dir);
  25.             ReleaseComObject(filesToSelectIntPtrs);
  26.         }
  27. }
复制代码
View Code调用:
  1. 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
 
顺便贴一下选中单个文件的用法:
  1. namespace MyNamespace
  2. {
  3.         /// <summary>
  4.         /// 按窗口句柄置顶窗口
  5.         /// </summary>
  6.         /// <param name="hwnd">窗口句柄</param>
  7.         [DllImport("user32.dll", EntryPoint = "SetForegroundWindow", SetLastError = true)]
  8.         internal static extern void SetForegroundWindow(IntPtr hwnd);
  9.         public static void ExploreFile(string filePath)
  10.         {
  11.             if (string.IsNullOrEmpty(filePath) || !File.Exists(filePath))
  12.             {
  13.                 return;
  14.             }
  15.             //打开资源管理器并选中文件
  16.             Process process = new Process();
  17.             process.StartInfo.FileName = "explorer";
  18.             process.StartInfo.Arguments = @"/select, " + filePath;
  19.             process.Start();
  20.             SetForegroundWindow(process.MainWindowHandle);//置顶一下
  21.         }
  22.     }
  23. }
复制代码
View Code 

来源:https://www.cnblogs.com/tods/archive/2023/08/08/17614343.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具