I am writing my own analyzer, and i need to use a file with rules in it. I need this file to be configurable in schema. I wrote such code to get this file:
String fileName = args.get("file");
File file = new File(fileName);
This code gets searches file in directory, where solr.home is. In my case it is "example" directory. But i need to search it in cores conf directory. How can i specify to look it in that directory?