1 /*=========================================================================
4 Module: $RCSfile: gdcmDirList.h,v $
6 Date: $Date: 2007/08/22 16:14:04 $
7 Version: $Revision: 1.36 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #ifndef _GDCMDIRLIST_H_
20 #define _GDCMDIRLIST_H_
23 #include "gdcmDicomDirSerie.h"
29 namespace GDCM_NAME_SPACE
32 typedef std::vector<std::string> DirListType;
34 //-----------------------------------------------------------------------------
36 // NOTE: Due to a M$VC6 'feature' we cannot export a std::list in a dll,
37 // so GDCM_EXPORT keyword was removed for this class only
39 // We have to supply accessors GetSize(), GetFirst(), GetNext()
42 * \brief List containing the file headers of all the 'gdcm readable' files
43 * found by exploring (possibly recursively) a root directory.
45 class GDCM_EXPORT DirList : public Base
48 DirList(std::string const &dirName, bool recursive);
49 DirList(DicomDirSerie *s);
52 void Print(std::ostream &os = std::cout, std::string const &indent = "" );
54 /// Return the name of the directory
55 std::string const &GetDirName() const { return DirName; }
57 /// Return the file names
58 DirListType const &GetFilenames() const { return Filenames; }
60 /// Return the number of Files
61 int GetSize() const { return Filenames.size(); }
63 static bool IsDirectory(std::string const &dirName);
65 std::string GetFirst();
66 std::string GetNext();
69 int Explore(std::string const &dirName, bool recursive=false);
70 int Explore(DicomDirSerie *s);
72 /// List of file names
73 DirListType Filenames;
74 /// name of the root directory to explore
77 /// iterator on the SQItems of the current SeqEntry
78 DirListType::iterator ItDirList;
81 } // end namespace gdcm
82 //-----------------------------------------------------------------------------