Hey guys, I am trying to delete a file. I don't understand why its not working.
public void Refresher()throws IOException
{
File theFile=new File("C:\\theFile.txt");
theFile.delete();
}
I launcher it with Refresher();
I googled around and followed a tutorial. (My code is compiles correctly)
Thanks PO