[C# 문법] C# 폴더 열기 – Process Start


안녕하세요.

 

오늘은 C#에서 사용자가 지정한 경로의 폴더를 여는 방법에 대해서 알려드리고자 합니다.

 

C#에서 특정 폴더를 실행시키려면 Process.Start 메서드를 사용 하셔야 합니다.

 

그럼 Process.Start 메서드를 이용하여 D드라이브의 경로를 열어 보도록 하겠습니다.


 

예제 코드


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace FolderOpen

{

    class Program

    {

        static void Main(string[] args)

        {

            //사용자가 열고자 하는 폴더 경로 지정

            string localFolderPath = @"D:\";

            //D드라이브 폴더 실행

            System.Diagnostics.Process.Start(localFolderPath);

        }

    }

}

Colored by Color Scripter

cs


실행 결과



 

위와 같이 프로그램을 실행 시키시면 D드라이브 경로가 나오는 것을 확인하실 수 있습니다.

 

감사합니다ㅎㅎ


728x90

이 글을 공유하기

댓글

Designed by JB FACTORY