Java SecurityManager .checkDelete (String file)
Syntax
SecurityManager.checkDelete(String file) has the following syntax.
public void checkDelete(String file)
Example
In the following code shows how to use SecurityManager.checkDelete(String file) method.
public class Main {
//w ww . ja v a 2 s. c o m
public static void main(String[] args) {
System.setProperty("java.security.policy", "file:/C:/java.policy");
SecurityManager sm = new SecurityManager();
System.setSecurityManager(sm);
// perform the check
sm.checkDelete("test.txt");
System.out.println("Allowed!");
}
}