]> Creatis software - crea.git/blob - src/creaFilesFromDirectory.h
Feature #1763
[crea.git] / src / creaFilesFromDirectory.h
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------ */ 
24
25 #ifndef _crea_DIRLIST_H_
26 #define _crea_DIRLIST_H_
27    
28
29
30 #include <string>
31 #include <vector>
32 #include <iostream>
33
34 namespace crea
35 {
36 class  DirList
37 {
38 public :
39    DirList(std::string const &dirName, bool recursive);
40    ~DirList();
41
42
43    std::string NormalizePath(std::string const &pathname); 
44
45    /// Return the name of the directory
46    std::string const &GetDirName() const { return DirName; }
47
48    /// Return the file names
49    std::vector<std::string> const &GetFilenames() const { return Filenames; }
50
51     /// Return the number of Files
52    int GetSize() const { return Filenames.size(); }  
53
54    static bool IsDirectory(std::string const &dirName);
55
56    std::string GetFirst();
57    std::string GetNext();
58
59 private :
60    int Explore(std::string const &dirName, bool recursive=false);
61
62    /// List of file names
63    std::vector<std::string> Filenames;
64    /// name of the root directory to explore
65    std::string DirName;
66
67 };
68
69 }
70
71 #endif