1 package org.nanocontainer.testmodel; 2 3 import java.io.File ; 4 5 11 public class FileSystemUsing { 12 13 public FileSystemUsing() { 14 File afile = File.listRoots()[0]; 15 System.out.println("--> " + afile.getAbsolutePath()); 16 new File (afile,"foo-bar-directory").mkdirs(); 17 throw new RuntimeException ("Whoa, should have barfed with access error"); 18 } 19 20 } 21 | Popular Tags |