How to get a List of Resources From a Directory in Java Classpath
You can use Reflections library for doing this. Reflections is a open source Java library. It scans Java classpath and indexes it with metadata. This library allows you to query the classpath at runtime and can be very handy for many run-time reflection code needs. In Java, if you want to get a list of resources from … Read more