DevHyun

디렉토리 생성 본문

C#

디렉토리 생성

D3V3L0P3R 2023. 11. 9. 10:46

 

        // filePath 변수생성 및 초기값 지정
        const string filePath = @"C:\";

 

            // filePath에 만들고자 하는 파일이 없을때

            if (File.Exists(filePath) == false)
            {
                try
                {
                    // 디렉토리 부터 생성
                    DirectoryInfo di = new DirectoryInfo(DirPath);

                    if (di.Exists == false)
                    {
                        try
                        {
                            di.Create();
                        }
                        catch
                        {
                            MessageBox.Show("디렉토리 생성 실패");

                        }

                    }

                }
                catch
                {
                    //MessageBox.Show("");

                }

'C#' 카테고리의 다른 글

Dictionary 활용  (0) 2023.11.09
다른 폼 메소드 참조하기  (1) 2023.11.09
클릭 후 드래그로 이동시키기  (0) 2023.11.09
ini 파일 읽고 쓰기  (0) 2023.11.09
프로세스를 종료시키는 방법  (0) 2023.11.09
Comments