]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdFilesFromDirectory.h
#3496 Linux Bug
[bbtk.git] / packages / std / src / bbstdFilesFromDirectory.h
index 852e83b529ac9c603daa477c6d5eb9e4d9c51b07..f3b8671e3cc67a15ffeaebc4f4af2d14b68b75f7 100644 (file)
@@ -39,8 +39,10 @@ namespace bbstd
     public bbtk::AtomicBlackBox
   {
     BBTK_BLACK_BOX_INTERFACE(FilesFromDirectory,bbtk::AtomicBlackBox);
+    BBTK_DECLARE_INPUT(Active,bool);
     BBTK_DECLARE_INPUT(In,std::string);
     BBTK_DECLARE_INPUT(Recursive,bool);  
+    BBTK_DECLARE_INPUT(RecursiveLevel,int);  
     BBTK_DECLARE_INPUT(Type,int);  
     BBTK_DECLARE_INPUT(FileEnd,std::vector<std::string>);  
     BBTK_DECLARE_OUTPUT(Out,std::vector<std::string>);
@@ -50,7 +52,7 @@ namespace bbstd
     
   private :
     std::string NormalizePath(std::string const &pathname);
-    int        Explore(std::string const &dirpath, bool recursive);
+    int        Explore(std::string const &dirpath, bool recursive, int recursiveLevel);
     void       CleanFilenames( std::string basePath );
 
     /// List of file names
@@ -68,9 +70,11 @@ namespace bbstd
    BBTK_DESCRIPTION("returns the fullPathNames of the files in a Directory");
    BBTK_CATEGORY("");
 
+   BBTK_INPUT(FilesFromDirectory,Active,"(default true) Active true/false ",bool,"");
    BBTK_INPUT(FilesFromDirectory,In,"Directory Name",std::string,"");
-   BBTK_INPUT(FilesFromDirectory,Recursive,"Recursive directory exploration",bool,"");
-   BBTK_INPUT(FilesFromDirectory,Type,"0=files 1=All_directories 2=last_directories  (0 default)",int,"");
+   BBTK_INPUT(FilesFromDirectory,Recursive,"(default false) Recursive directory exploration",bool,"");
+   BBTK_INPUT(FilesFromDirectory,Type,"(0 default) 0=files 1=All_directories 2=last_directories  ",int,"");
+   BBTK_INPUT(FilesFromDirectory,RecursiveLevel,"(999 default) Recursive level",int,"");
    BBTK_INPUT(FilesFromDirectory,FileEnd,"Select just the files with this end file name",std::vector<std::string>,"");
   
    BBTK_OUTPUT(FilesFromDirectory,Out,"FullPathNames of the files",std::vector<std::string>,"");