本篇文章將帶你認識C#的新語法、創建項目、發佈運行、讀取的相關操作、MVC開發、擴展、各種容易的使用,許可權等.NET的相關知識。帶你從零到精通,全面掌握.NET5的開發技能。 ...
因軟體里使用了第三方插件,第三方插件的日誌文件夾存在路徑不止一個,並且可能層級較深。
為便於運維人員和最終用戶使用,在界面上增加一個“打開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); } }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> [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);//置頂一下 } } }View Code