Notifications.displayInProgress(); //Show Progress Window
for(File f: current.listFiles(filter)){
//User Pre-Determined Destination, Pass in Actual File Name Without Suffix
//UnzipProcess a = new UnzipProcess(f, new File(destination, f.getName().substring(0, f.getName().lastIndexOf("."))));
processes.add(service.submit(new ZipProcess(f, new File(destination, f.getName().substring(0, f.getName().lastIndexOf("."))))));
}
//Hang While Processes are Running
while(isAThreadAlive());