悠然古琴弹君子心 发表于 2023-8-8 14:40:17

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

因软件里使用了第三方插件,第三方插件的日志文件夹存在路径不止一个,并且可能层级较深。
为便于运维人员和最终用户使用,在界面上增加一个“打开XX文件夹”的按钮,点击时,打开第三方插件日志文件夹所在的上级文件夹,并选中其下级指定名称的若干个文件和文件夹。
原本已有选中单个文件的用法,现在要的是选中多个文件的用法,较选中单个的复杂。
先看选中多个的:
函数定义:
namespace MyNameSpace
{
    public class FileHelper
    {
      
      public static extern int SHOpenFolderAndSelectItems(IntPtr pidlFolder, uint cidl, IntPtr[] apidl, uint dwFlags);

      
      public static extern IntPtr ILCreateFromPath( 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;
            for (int i = 0; i < filesToSelect.Length; i++)
            {
                filesToSelectIntPtrs = ILCreateFromPath(filesToSelect);
            }

            SHOpenFolderAndSelectItems(dir, (uint)filesToSelect.Length, filesToSelectIntPtrs, 0);
            ReleaseComObject(dir);
            ReleaseComObject(filesToSelectIntPtrs);
      }
}View Code调用:
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>
      
      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);//置顶一下
      }
    }
}View Code 

来源:https://www.cnblogs.com/tods/archive/2023/08/08/17614343.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: 【C#】在Windows资源管理器打开文件夹,并选中指定的文件或文件夹