Program: gdcm
Module: $RCSfile: gdcmDirList.cxx,v $
Language: C++
- Date: $Date: 2005/02/01 09:46:15 $
- Version: $Revision: 1.40 $
+ Date: $Date: 2005/02/01 10:00:34 $
+ Version: $Revision: 1.41 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
bool DirList::IsDirectory(std::string const &dirName)
{
#ifndef _MSC_VER
- std::ifstream testDir(dirName.c_str(), std::ios::in | std::ios::binary);
- return testDir != 0;
+ struct stat buf;
+ stat(dirName.c_str(), &buf);
+ return S_ISDIR(buf.st_mode);
#else
return (GetFileAttributes(dirName.c_str()) & FILE_ATTRIBUTE_DIRECTORY) != 0;
#endif