Commons vfs findFiles imaginary file

4.5k Views Asked by At

In my quartz job I want to read csv files from directory using commons-vfs.

try {
    FileSystemManager fsManager = VFS.getManager();
    final FileObject fileObject = fsManager.resolveFile(getJob().getDirectory());
    if(fileObject.getType() != FileType.FOLDER) {
        throw new FileTransferException("Invalid directory : " + getJob().getDirectory());
    }

    final FileFilter fileFilter = new FileFilter() {

        @Override
        public boolean accept(FileSelectInfo fileInfo) {
            try {
                boolean isCSV = fileInfo.getFile().getName().getBaseName().endsWith(".csv");
                logger.debug("TEST : {} {} " + fileInfo.getFile().getName(), fileInfo.getFile().getType() , isCSV);
                long fileTime  = fileInfo.getFile().getContent().getLastModifiedTime();
                return isCSV;
            } catch (FileSystemException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                return false;
            }
        }
    }; 

    FileSelector selector = new FileFilterSelector(fileFilter);
    FileObject[] findFiles = fileObject.findFiles(selector);
    for (int i = 0; i < findFiles.length; i++) {
        logger.info("Found {} : {}", i, findFiles[i]);
    }
    } catch(Exception e) {
        throw new JobExecutionException(e);
    }

In folder have some files, but it throws exeception when I want to check file date and filter too old files. It also shows strange 'imaginary' as file type - it is real file, itself just found it:

18:13:27.807 DEBUG [AE-Scheduler_Worker-2][CsvImportJob]
TEST : imaginary false file:///e:/some_directory /not_csv.txt
org.apache.commons.vfs2.FileSystemException: Could not determine the last   modified timestamp of "file:///e:/some_directory /not_csv.txt" because it does not exist.
    at org.apache.commons.vfs2.provider.DefaultFileContent.getLastModifiedTime(DefaultFileContent.java:165) 

What I am doing wrong?

1

There are 1 best solutions below

0
On

I found the cause of error - unnecessary space at the end of directory name....