Package freenet.clients.fcp

Examples of freenet.clients.fcp.NotAllowedException


  private File getDownloadsDir (String downloadPath) throws NotAllowedException {
    File downloadsDir = new File(downloadPath);
    //Invalid if it's disallowed, doesn't exist, isn't a directory, or can't be created.
    if(!core.allowDownloadTo(downloadsDir) || !((downloadsDir.exists() &&
        downloadsDir.isDirectory()) || !downloadsDir.mkdirs())) {
      throw new NotAllowedException();
    }
    return downloadsDir;
  }
View Full Code Here

TOP

Related Classes of freenet.clients.fcp.NotAllowedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.