如何判断某个路径是否存在? 如判断C:/file/photo/目录是否存在

  CFileFind     finder;  
          static     const     TCHAR     szFileToFind[]     =     _T("C://SYS");  
          if     (finder.FindFile(szFileToFind))  
          {  
              finder.FindNextFile();  
              //AfxMessageBox(finder.GetFileName());  
              if     (!finder.IsDirectory())  
              {  
                  AfxMessageBox("C://SYS是文件");  
              }  
              else  
              {  
                  AfxMessageBox("C://SYS是文件夹");  
              }  
          }  
          else  
          {  
              AfxMessageBox("没有发现C://SYS");  
          }  

你可能感兴趣的:(VC,c)