Your config file is in your project, somewhere in the file system.
However, Eclipse does not put it in the classpath. To make it be on the path to the class, right-click your folder and add it as the source folder. Then Eclipse will add it to the root of the class path. You can get it with
InputStream is = this.getClass().getResourceAsStream("/config");
Eclipse places everything in the source resources folder, starting at the root of the class path. therefore
resources/config
appears in the class path as
/config /qbooksprintfix/FileChecker /qbooksprintfxi/FilePurgeHandler /...
source share