Package net.sourceforge.javautil.common.io

Examples of net.sourceforge.javautil.common.io.VirtualDirectory


  }

  public List<VirtualPath> getPaths(VirtualPath directoryPath) throws IOException {
    try {
      List<VirtualPath> paths = new ArrayList<VirtualPath>();
      VirtualDirectory subdir = root.getDirectory(directoryPath);
      Iterator<VirtualArtifact> artifacts = subdir.getArtifacts();
      while (artifacts.hasNext()) {
        paths.add(artifacts.next().getPath());
      }
      return paths;
    } catch (VirtualArtifactNotFoundException e) {
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.common.io.VirtualDirectory

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.