Why wont this delete the files in the arraylist. i checked the arraylist and the files are there. i even added a "\\" to the files and still nothing. i dont get any errors.
private void fileDelte ()
{
for (int i =0; i<Files2Delete.size(); i++)
{
File f = new File(Files2Delete.get(i));
f.delete();
}
}