Package org.apache.aries.application.utils.filesystem.impl

Examples of org.apache.aries.application.utils.filesystem.impl.DirectoryImpl


  {
    IDirectory dir = null;
   
    if (fs.exists()) {
      if (fs.isDirectory()) {
        dir = new DirectoryImpl(fs, fs);
      } else if (fs.isFile()) {
        try {
          dir = new ZipDirectory(fs, fs);
        } catch (IOException e) {
          _logger.error ("IOException in IDirectory.getFSRoot", e);
View Full Code Here

TOP

Related Classes of org.apache.aries.application.utils.filesystem.impl.DirectoryImpl

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.