特定の拡張子(.JPGなど)に関連付けられているアプリケーションを特定し、System.Diagnostics.Process.Start(...)の呼び出しを介して起動できるように、そのアプリケーションの実行可能ファイルが配置されている場所を特定する方法。
レジストリの読み取りと書き込みの方法はすでに知っています。どのアプリケーションが拡張機能に関連付けられているか、表示名は何か、実行可能ファイルはどこにあるかを標準的な方法で判断するのが難しいのは、レジストリのレイアウトです。
Anders が言ったように - IQueryAssociations COM インターフェイスを使用することをお勧めします。これはpinvoke.netのサンプルです
サンプルコード:
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);
}
}
}
}
}
@aku:HKEY_CLASSES_ROOT \SystemFileAssociations\を忘れないでください
それらが.NETで公開されているかどうかはわかりませんが、これを処理するCOMインターフェイス(IQueryAssociationsとその仲間)があるので、レジストリをいじくり回す必要はなく、次のWindowsバージョンで変更されないことを願っています。
また、HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\
. 「オープン幅...」リストのEXT \OpenWithList キー (選択肢の「a」、「b」、「c」、「d」などの文字列値)
. 「この種類のファイルを開くには、選択したプログラムを常に使用する」のEXT \UserChoice キー (「Progid」文字列値の値)
すべての値はキーであり、上記の例のdocNameと同じ方法で使用されます。
ファイルタイプの関連付けはWindowsレジストリに保存されるため、 Microsoft.Win32.Registryクラスを使用して、どのアプリケーションがどのファイル形式で登録されているかを読み取ることができるはずです。
役立つと思われる2つの記事を次に示します。