[C#] 디렉토리, 파일 유무 체크

// 디렉토리 유무 체크
System.IO.DirectoryInfo di = new System.IO.DirectoryInfo("디렉토리 경로");
if(di.Exists)
{
    // 디렉토리 존재
}
else
{
    // 디렉토리 없음.
}
 
// 파일 유무 체크
string _Filestr = "파일 경로";
System.IO.FileInfo fi = new System.IO.FileInfo(_Filestr);
if(fi.Exists)
{
    // 파일 존재
}
else
{
    // 파일 없음.
}
이전글
다음글

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다