현 블로그는 모바일 환경이 아닌 PC환경에 최적화 되어있습니다.

 Mir의 운영환경

 본체

 DeskTop

 O S

 Windows XP Professional Version 2002 Service Pack 2

 Application

 VisualStudio2005

 .Net

 Framework Ver 2.0

디렉토리 존재유무 확인하기(DirectoryInfo.Exists)


DirectoryInfo.Exists를 사용하여 파일 존재유무를 확인해보자.

 

폴더경로를 이용하여 DirectoryInfo변수를 생성후 해당 변수의 Exists를 확인하면 폴더 존재 유무를 확인할수 있다.

 

- 예제 -

using System.IO;

            //DirectoryInfo 생성
            DirectoryInfo di = new DirectoryInfo("폴더경로");
            //DirectoryInfo.Exists로 폴더 존재유무 확인
            if (di.Exists) { "폴더존재" }
            else { "폴더부재" }

 


※ 관련글

+ Recent posts