]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdFilesFromDirectory.h
#3247 BBTK Feature New Normal - FilesFromDirectory RecursiveLevel
[bbtk.git] / packages / std / src / bbstdFilesFromDirectory.h
index 852e83b529ac9c603daa477c6d5eb9e4d9c51b07..841df20a83f8bf8ecc9fb570282d883975bf7c1d 100644 (file)
@@ -41,6 +41,7 @@ namespace bbstd
     BBTK_BLACK_BOX_INTERFACE(FilesFromDirectory,bbtk::AtomicBlackBox);
     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 +51,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
@@ -69,8 +70,9 @@ namespace bbstd
    BBTK_CATEGORY("");
 
    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>,"");