14

特定の拡張子(.JPGなど)に関連付けられているアプリケーションを特定し、System.Diagnostics.Process.Start(...)の呼び出しを介して起動できるように、そのアプリケーションの実行可能ファイルが配置されている場所を特定する方法。

レジストリの読み取りと書き込みの方法はすでに知っています。どのアプリケーションが拡張機能に関連付けられているか、表示名は何か、実行可能ファイルはどこにあるかを標準的な方法で判断するのが難しいのは、レジストリのレイアウトです。

4

5 に答える 5

9

Anders が言ったように - IQueryAssociations COM インターフェイスを使用することをお勧めします。これはpinvoke.netのサンプルです

于 2009-05-27T19:42:01.633 に答える
7

サンプルコード:

using System;
using Microsoft.Win32;

namespace GetAssociatedApp
{
    class Program
    {
        static void Main(string[] args)
        {
            const string extPathTemplate = @"HKEY_CLASSES_ROOT\{0}";
            const string cmdPathTemplate = @"HKEY_CLASSES_ROOT\{0}\shell\open\command";

            // 1. Find out document type name for .jpeg files
            const string ext = ".jpeg";

            var extPath = string.Format(extPathTemplate, ext);

            var docName = Registry.GetValue(extPath, string.Empty, string.Empty) as string;
            if (!string.IsNullOrEmpty(docName))
            {
                // 2. Find out which command is associated with our extension
                var associatedCmdPath = string.Format(cmdPathTemplate, docName);
                var associatedCmd = 
                    Registry.GetValue(associatedCmdPath, string.Empty, string.Empty) as string;

                if (!string.IsNullOrEmpty(associatedCmd))
                {
                    Console.WriteLine("\"{0}\" command is associated with {1} extension", associatedCmd, ext);
                }
            }
        }
    }
}
于 2008-08-24T11:01:18.470 に答える
5

@aku:HKEY_CLASSES_ROOT \SystemFileAssociations\を忘れないでください

それらが.NETで公開されているかどうかはわかりませんが、これを処理するCOMインターフェイス(IQueryAssociationsとその仲間)があるので、レジストリをいじくり回す必要はなく、次のWindowsバージョンで変更されないことを願っています。

于 2008-08-28T20:49:35.247 に答える
1

また、HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\

. 「オープン幅...」リストのEXT \OpenWithList キー (選択肢の「a」、「b」、「c」、「d」などの文字列値)

. 「この種類のファイルを開くには、選択したプログラムを常に使用する」のEXT \UserChoice キー (「Progid」文字列値の値)

すべての値はキーであり、上記の例のdocNameと同じ方法で使用されます。

于 2010-11-13T18:49:06.520 に答える
0

ファイルタイプの関連付けはWindowsレジストリに保存されるため、 Microsoft.Win32.Registryクラスを使用して、どのアプリケーションがどのファイル形式で登録されているかを読み取ることができるはずです。

役立つと思われる2つの記事を次に示します。

于 2008-08-24T10:19:58.710 に答える