I can't seem to get my project to delete a file, this is the current code I'm running:
if(!(user.profilePicturePath.equals("Images/defaultprofilepicture1.png"))) {
File oldPicture = new File(user.profilePicturePath);
oldPicture.delete();
}
I've checked to make sure the path is correct however the image still won't delete, and I'm not too sure why it is... Does anyone have any clue?