![JAR search and dependency download from the Maven repository](/logo.png)
org.picocontainer.script.testmodel.FileSystemUsing Maven / Gradle / Ivy
The newest version!
package org.picocontainer.script.testmodel;
import java.io.File;
/**
* Used for testing permissions.
*
* @author Paul Hammant
*/
public class FileSystemUsing {
public FileSystemUsing() {
File afile = File.listRoots()[0];
new File(afile,"foo-bar-directory").mkdirs();
throw new RuntimeException("Whoa, should have barfed with access error");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy