private void chkFolder(string sPath)
        {
            DirectoryInfo di = new DirectoryInfo(sPath);
            if (di.Exists == false)
            {
                di.Create();
            }
        }


파일 확인
출처: http://joyfather.blogspot.com/2010/03/c_4983.html
System.IO 참조

_strFile = "C:\\test.txt"; //파일경로

FileInfo _finfo = new FileInfo(_strFile);

파일 있는지 확인 _finfo.Exists

있을때 true 없으면 당근 false

**폴더 일경우는 FileInfo 대신에 DirectoryInfo 사용한다.

Posted by 노을지기