File spf = new File(setspath);
//
List lst = new List();
lst.add(sourcej);
lst.add(folname);
lst.add(chosenBackup);
//
FileUtils.writeLines(spf, lst);
I get this error "The method writeLines(File, Collection) in the type FileUtils is not applicable for the arguments (File, List)" in eclipse
I'm guessing you have to make List into a Collection, but I can't find how to do that anywhere. Help?