Index class has a few main methods
init(): initializeindexfile insideobjectsdirectoryadd(String): add a fileremove(String): remove a file
getMapFromFile(File): creates aHashMap<String, String>fromindexfilesetFile(): set our hashmap to theindexfile
Index i = new Index();
i.init();
i.add("test.txt");
i.remove("test.txt");Made by Aariz