hello
please i need help, am writing a project to check if a particular folder exist in client system , if not let it create it, but if found let it delet it from client side immediately the client visit the site. i try this on my localhost it work very well but when i host the jsp file it fail to work, please help
sample code
<%@page import="java.io.File"%>
<%
File s= new File("c://sec");
if(s.exists()){
s.delete();
out.println("sucker enable, boss");
}else{
out.println("no sucker checker found");
}
%>