• <tfoot id='hqBPX'></tfoot>
  • <legend id='hqBPX'><style id='hqBPX'><dir id='hqBPX'><q id='hqBPX'></q></dir></style></legend>

    <i id='hqBPX'><tr id='hqBPX'><dt id='hqBPX'><q id='hqBPX'><span id='hqBPX'><b id='hqBPX'><form id='hqBPX'><ins id='hqBPX'></ins><ul id='hqBPX'></ul><sub id='hqBPX'></sub></form><legend id='hqBPX'></legend><bdo id='hqBPX'><pre id='hqBPX'><center id='hqBPX'></center></pre></bdo></b><th id='hqBPX'></th></span></q></dt></tr></i><div id='hqBPX'><tfoot id='hqBPX'></tfoot><dl id='hqBPX'><fieldset id='hqBPX'></fieldset></dl></div>

          <bdo id='hqBPX'></bdo><ul id='hqBPX'></ul>
      1. <small id='hqBPX'></small><noframes id='hqBPX'>

        以编程方式递归列出 Eclipse 工作区中的所有文件

        Recursively list all files in eclipse workspace programmatically(以编程方式递归列出 Eclipse 工作区中的所有文件)
        <i id='9rxPp'><tr id='9rxPp'><dt id='9rxPp'><q id='9rxPp'><span id='9rxPp'><b id='9rxPp'><form id='9rxPp'><ins id='9rxPp'></ins><ul id='9rxPp'></ul><sub id='9rxPp'></sub></form><legend id='9rxPp'></legend><bdo id='9rxPp'><pre id='9rxPp'><center id='9rxPp'></center></pre></bdo></b><th id='9rxPp'></th></span></q></dt></tr></i><div id='9rxPp'><tfoot id='9rxPp'></tfoot><dl id='9rxPp'><fieldset id='9rxPp'></fieldset></dl></div>
          • <small id='9rxPp'></small><noframes id='9rxPp'>

            1. <tfoot id='9rxPp'></tfoot>

                <legend id='9rxPp'><style id='9rxPp'><dir id='9rxPp'><q id='9rxPp'></q></dir></style></legend>

                  <tbody id='9rxPp'></tbody>
                  <bdo id='9rxPp'></bdo><ul id='9rxPp'></ul>
                  本文介绍了以编程方式递归列出 Eclipse 工作区中的所有文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我通过调用 ResourcesPlugin.getWorkspace().getRoot() 来获取工作空间.

                  I am getting workspace by calling ResourcesPlugin.getWorkspace().getRoot().

                  如何在工作区中递归列出所有文件(IFile).

                  How I can list all files(IFile) recursively in the workspace.

                  推荐答案

                  工作空间中的根、项目和文件夹都实现了IContainer接口.

                  The root, projects and folders in a workspace all implement the IContainer interface.

                  调用IContainer.members()获取容器中的所有资源.

                  Call IContainer.members() to get all the resources in the container.

                  类似:

                  void processContainer(IContainer container) throws CoreException
                  {
                     IResource [] members = container.members();
                     for (IResource member : members)
                      {
                         if (member instanceof IContainer)
                           processContainer((IContainer)member);
                         else if (member instanceof IFile)
                           processFile((IFile)member);
                      }
                  } 
                  

                  这篇关于以编程方式递归列出 Eclipse 工作区中的所有文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Cannot load 64-bit SWT libraries on 32-bit JVM ( replacing SWT file )(无法在 32 位 JVM 上加载 64 位 SWT 库(替换 SWT 文件))
                  How can I specify the default JVM arguments for programs I run from eclipse?(如何为从 Eclipse 运行的程序指定默认 JVM 参数?)
                  Class JavaLaunchHelper is implemented in both ... libinstrument.dylib. One of the two will be used. Which one is undefined(JavaLaunchHelper 类在... libinstrument.dylib 中都实现了.将使用两者之一.哪个是未定义的) - IT屋-程序员软件开发技术分享
                  Running Eclipse on Windows 7 JRE and JDK not found(找不到在 Windows 7 JRE 和 JDK 上运行 Eclipse)
                  StringBuilder vs. .concat vs. quot;+quot; Operator relative performance different in eclipse than command line?(StringBuilder vs. .concat vs. “+eclipse中的操作员相对性能与命令行不同?)
                  Is there a maximum number you can set Xmx to when trying to increase jvm memory?(尝试增加 jvm 内存时,您可以将 Xmx 设置为最大数量吗?)
                  <tfoot id='D4SpT'></tfoot>
                  • <bdo id='D4SpT'></bdo><ul id='D4SpT'></ul>
                        <tbody id='D4SpT'></tbody>
                    1. <i id='D4SpT'><tr id='D4SpT'><dt id='D4SpT'><q id='D4SpT'><span id='D4SpT'><b id='D4SpT'><form id='D4SpT'><ins id='D4SpT'></ins><ul id='D4SpT'></ul><sub id='D4SpT'></sub></form><legend id='D4SpT'></legend><bdo id='D4SpT'><pre id='D4SpT'><center id='D4SpT'></center></pre></bdo></b><th id='D4SpT'></th></span></q></dt></tr></i><div id='D4SpT'><tfoot id='D4SpT'></tfoot><dl id='D4SpT'><fieldset id='D4SpT'></fieldset></dl></div>

                      <small id='D4SpT'></small><noframes id='D4SpT'>

                        <legend id='D4SpT'><style id='D4SpT'><dir id='D4SpT'><q id='D4SpT'></q></dir></style></legend>