web-dev-qa-db-ja.com

WPFアプリ内から特定のディレクトリに対してWindowsエクスプローラーを開くにはどうすればよいですか?

WPFアプリケーションで、ユーザーがボタンをクリックすると、Windowsエクスプローラーを特定のディレクトリに開きたいのですが、どうすればよいですか?

私はこのようなものを期待しています:

Windows.OpenExplorer("c:\test");
138
Edward Tanguay

なぜProcess.Start(@"c:\test");ではありませんか?

285
Jamie Penney

これは動作するはずです:

Process.Start(@"<directory goes here>")

または、プログラムを実行する/ファイルやフォルダを開く方法が必要な場合:

        private void StartProcess(string path)
    {
        ProcessStartInfo StartInformation = new ProcessStartInfo();

        StartInformation.FileName = path;

        Process process = Process.Start(StartInformation);

        process.EnableRaisingEvents = true;
    }

そして、メソッドを呼び出し、括弧内にファイルおよび/またはフォルダのディレクトリまたはアプリケーションの名前を配置します。これが役に立てば幸いです!

13
Anthony Smyth

System.Diagnostics.Process.Startを使用できます。

または、次のようなWinApiを直接使用すると、Explorer.exeが起動します。 ShellExecuteの4番目のパラメーターを使用して、開始ディレクトリを指定できます。

public partial class Window1 : Window
{
    public Window1()
    {
        ShellExecute(IntPtr.Zero, "open", "Explorer.exe", "", "", ShowCommands.SW_NORMAL);
        InitializeComponent();
    }

    public enum ShowCommands : int
    {
        SW_HIDE = 0,
        SW_SHOWNORMAL = 1,
        SW_NORMAL = 1,
        SW_SHOWMINIMIZED = 2,
        SW_SHOWMAXIMIZED = 3,
        SW_MAXIMIZE = 3,
        SW_SHOWNOACTIVATE = 4,
        SW_SHOW = 5,
        SW_MINIMIZE = 6,
        SW_SHOWMINNOACTIVE = 7,
        SW_SHOWNA = 8,
        SW_RESTORE = 9,
        SW_SHOWDEFAULT = 10,
        SW_FORCEMINIMIZE = 11,
        SW_MAX = 11
    }

    [DllImport("Shell32.dll")]
    static extern IntPtr ShellExecute(
        IntPtr hwnd,
        string lpOperation,
        string lpFile,
        string lpParameters,
        string lpDirectory,
        ShowCommands nShowCmd);
}

宣言は pinvoke.net Webサイト からのものです。

11
Abel
Process.Start("Explorer.exe" , @"C:\Users");

これを使用する必要がありましたが、tgt dirを指定する他の方法では、アプリケーションが終了したときにエクスプローラーウィンドウが閉じられました。