Select a project in Eclipse (your project) -> right click -> select Properties
Select "Java Build Path" -> Click next on "Libraries" Tab
Click on "Add External JARs"
Browse your file system and add "fr.iipt.ka.drf_directory_recursive_files-x.x.jar
Note :
When you download DRF library it's normally gzipped or zipped. Begin by Gunzipped or Unzipped the file
tar -zxvf drv.gz
Now that the jar is added to your project -> click on "OK"
In any new created or existing class in your project add these two imports
Ready to use classes in the DRF library begin with Tfind, you have one general use class, and two other more specialled classes.
Here in the example "TFindAllFilesRecursiveWithToken"
JavaDoc and Sources are included in DRF package
In this version searching files with conditions is possible. And it's possible to limit searching to root directory.
(I.e you can search and found only files with some extensions, or a string in the name of files, or files that have token in their text, or files that have the three conditions all together
)
public TFindAllFilesRecursive(File rootDir,
String[] extensions,
String stringInName,
String token,
boolean recursiveSearch)
An example of construction
Searching for .html files only
String[] extensions={".html"};
TFindAllFilesRecursive t=new TFindAllFilesRecursive(new File("/home/kas/css_test"),extensions,null,null,true);