在 Windows 中尋找檔案類型的預設應用程式
開發人員經常需要尋找與特定檔案類型關聯的預設應用程式。這對於呼叫特定檔案副檔名的預設編輯器等任務非常重要。
要實現這一目標,可以考慮使用 System.Diagnostics.Process.Start 在其預設應用程式中開啟檔案。然而,這種方法是有限的,不允許開啟具有非標準副檔名的檔案。
可靠的解決方案涉及使用 Win32 API 函數 AssocQueryString。此函數可以查詢作業系統以查找與檔案類型關聯的預設應用程式。
以下是如何在 C# 中利用 AssocQueryString:
using System.Runtime.InteropServices; [DllImport("Shlwapi.dll", CharSet = CharSet.Unicode)] public static extern uint AssocQueryString( AssocF flags, AssocStr str, string pszAssoc, string pszExtra, [Out] StringBuilder pszOut, ref uint pcchOut ); [Flags] public enum AssocF { // ... } public enum AssocStr { // ... } public static string AssocQueryString(AssocStr association, string extension) { const int S_OK = 0; const int S_FALSE = 1; uint length = 0; uint ret = AssocQueryString(AssocF.None, association, extension, null, null, ref length); if (ret != S_FALSE) { throw new InvalidOperationException("Could not determine associated string"); } var sb = new StringBuilder((int)length); ret = AssocQueryString(AssocF.None, association, extension, null, sb, ref length); if (ret != S_OK) { throw new InvalidOperationException("Could not determine associated string"); } return sb.ToString(); }
透過呼叫 AssocQueryString 並指定所需的關聯,您可以擷取預設應用程式的完整路徑。這允許您直接與特定文件類型的預設編輯器或處理器交互,即使該文件沒有標準副檔名。
以上是如何以程式設計方式尋找 Windows 中特定檔案類型的預設應用程式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!