Code to delete the file is given below:
File file = new File(filePath);
file.delete();
But this code does not delete the file.
Please post your thoughts on this issue.
Regards,
Ganesh
File file = new File(filePath);
file.delete();
But this code does not delete the file.
Please post your thoughts on this issue.
Regards,
Ganesh
Comment