首頁 > 後端開發 > C++ > 如何以程式設計方式尋找 Windows 中特定檔案類型的預設應用程式?

如何以程式設計方式尋找 Windows 中特定檔案類型的預設應用程式?

Barbara Streisand
發布: 2025-01-05 12:13:40
原創
363 人瀏覽過

How Can I Programmatically Find the Default Application for a Specific File Type in Windows?

在 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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板