Visual Studio | WPF > 폴더를 탐색기에서 열기

운영 환경
Windows 8.1 Pro (64bit)
Microsoft Visual Studio 2017 Community
Sublime Text 2

c++ builder > 디버그 > 처리 대상 폴더 표시 > ShellExecute(NULL, NULL, L"explorer.exe", dstDir, NULL, SW_SHOWNORMAL);
Visual Studio + WPF에서 어떻게 구현합니까?

참고: 외부 응용 프로그램을 시작하고 연관된 소프트웨어로 파일을 엽니다. @ DOBON.NET 프로그래밍 길

ShellExecute() 대신 System.Diagnostics.Process.Start()를 호출하는 방법을 사용해 보겠습니다.

@-quoted 형식을 사용하지만 큰 따옴표의 수는 불필요하다고 생각되는 분은 줄였다.
Visual Studio | WPF > C# > string > @ > @-quoted 형식 > Python의 raw string에 해당?

code



MainWindow.xaml
<Window x:Class="_171211_t1950_openFolder.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:_171211_t1950_openFolder"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Button Name="B_open" Content="Open" Height="30" Click="B_open_Click"/>
    </Grid>
</Window>

MainWindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace _171211_t1950_openFolder
{
    /// <summary>
    /// MainWindow.xaml の相互作用ロジック
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void B_open_Click(object sender, RoutedEventArgs e)
        {
            System.Diagnostics.Process.Start("explorer.exe", @"C:\Windows");
        }
    }
}

실행



버튼을 눌러 C:\Windows가 열리는 것을 확인했다.

좋은 웹페이지 즐겨찾기