• <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 工作区中的所有文件

        时间:2023-08-22
        <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 工作区中的所有文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Eclipse 使用什么 clearcase 插件 下一篇:从 IDE 外部进行版本控制是一种好习惯吗?

                  相关文章

                  <tfoot id='D4SpT'></tfoot>
                  • <bdo id='D4SpT'></bdo><ul id='D4SpT'></ul>
                  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>