首頁 > 後端開發 > C++ > 如何在不使用安裝程式的情況下以程式設計方式將檔案副檔名與 Windows 中的應用程式關聯?

如何在不使用安裝程式的情況下以程式設計方式將檔案副檔名與 Windows 中的應用程式關聯?

Mary-Kate Olsen
發布: 2025-01-19 23:46:09
原創
533 人瀏覽過

How can I programmatically associate a file extension with my application in Windows without using an installer?

將檔案副檔名與應用程式關聯

在開發編輯特定文件類型的應用程式時,通常需要將其關聯為該文件類型的預設編輯器。以下是如何在不使用安裝程式的情況下實現此目標的可靠解決方案。

關聯方法的實作:

提供的程式碼嘗試透過操作註冊表來關聯文件。但是,它包含幾個問題:

  1. 它開啟目前使用者的註冊表,而沒有指定讀寫權限,這可能會阻止成功修改金鑰。
  2. 它使用 CreateSubKey 而不是 OpenSubKey 來建立 Shell 子金鑰,如果子金鑰已存在,則會失敗。

修改後的關聯代碼:

以下是解決這些問題的程式碼的修改版本:

<code class="language-csharp">public static void SetAssociation(string extension, string keyName, string fileDescription, string executablePath)
{
    // 以读写权限打开当前用户的注册表
    using (RegistryKey currentUser = Registry.CurrentUser.OpenSubKey(@"HKEY_CURRENT_USER", RegistryKeyPermissionCheck.ReadWriteSubTree, System.Security.AccessControl.RegistryRights.FullControl))
    {
        using (RegistryKey baseKey = currentUser.CreateSubKey(extension))
        {
            baseKey.SetValue("", keyName);
        }

        using (RegistryKey openMethodKey = currentUser.CreateSubKey(keyName))
        {
            openMethodKey.SetValue("", fileDescription);

            // 如果“DefaultIcon”子密钥不存在,则创建它
            if (openMethodKey.OpenSubKey("DefaultIcon") == null)
            {
                using (RegistryKey defaultIconKey = openMethodKey.CreateSubKey("DefaultIcon"))
                {
                    defaultIconKey.SetValue("", "\"" + executablePath + "\",0");
                }
            }

            // 创建 Shell 子密钥并编辑和打开命令子密钥
            using (RegistryKey shellKey = openMethodKey.CreateSubKey("Shell"))
            {
                using (RegistryKey editKey = shellKey.CreateSubKey("edit"))
                {
                    using (RegistryKey editCommandKey = editKey.CreateSubKey("command"))
                    {
                        editCommandKey.SetValue("", "\"" + executablePath + "\" \"%1\"");
                    }
                }

                using (RegistryKey openKey = shellKey.CreateSubKey("open"))
                {
                    using (RegistryKey openCommandKey = openKey.CreateSubKey("command"))
                    {
                        openCommandKey.SetValue("", "\"" + executablePath + "\" \"%1\"");
                    }
                }
            }
        }

        // 在 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts 中设置 ProgId
        using (RegistryKey fileExtsKey = currentUser.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\" + extension))
        {
            fileExtsKey.SetValue("Progid", keyName);
        }
    }

    // 通知资源管理器更改以刷新其文件关联
    SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_FLUSH, IntPtr.Zero, IntPtr.Zero);
}</code>
登入後複製

使用方法範例:

要將 .ucs 檔案副檔名與名為「UCS Editor」的應用程式關聯,您可以使用此程式碼:

<code class="language-csharp">SetAssociation(".ucs", "UCS_Editor_File", "UCS File", Application.ExecutablePath);</code>
登入後複製

其他注意事項:

  • 確保 executablePath 指向實際的可執行文件,而不是快捷方式或捆綁的可執行文件。
  • 如果註冊表中尚未註冊檔案副檔名,則需要在設定關聯之前建立其對應的金鑰。
  • 使用 EnsureAssociationsSet 方法自動設定多種檔案類型的關聯。

This revised response maintains the original image and uses more descriptive language while restructuring the text for improved clarity and flow. The code is also formatted for better readability.

以上是如何在不使用安裝程式的情況下以程式設計方式將檔案副檔名與 Windows 中的應用程式關聯?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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