File processingFolder = new File(path);
if(!processingFolder.exists())
processingFolder.mkdirs();
DirWatcher task = new DirWatcher(path, "seed" ) {
protected void onChange( File file, String action ) {
// here we code the action on a change
try{
System.out.println( "File "+ file.getName() +" action: " + action );