String gazbinDir = gazbinFile.getParent();
String gazbinName = gazbinFile.getName();
// Always read the yaml file so we can get any special location of the cache
// file or figure out that we should not try to load the cache file
Yaml yaml = new Yaml();
BufferedReader yamlReader =
new BomStrippingInputStreamReader((configFileURL).openStream(), encoding);
Object configObject = yaml.load(yamlReader);
List<Map> configListFiles = null;
if(configObject instanceof Map) {
Map<String,Object> configMap = (Map<String,Object>)configObject;
String configCacheDirName = (String)configMap.get("cacheDir");