tokazio / filecollector

Fast file collector

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

File collector

Java CI with Gradle Coverage Bugs Code Smells

Fast collect files into list from a given folder. Use DirectoryStream API and multi threading.

final List<File> files = new CollectorEngine()
    .fileFilter(path-> path.toString().endsWith(".java");
        }
    })
    .dirFilter(path -> path.toString().equals("java");
        }
    })
    .collect("myFolder");

About

Fast file collector


Languages

Language:Java 100.0%