在“打开资源”对话框中键入内容时,是否可以通过目录而不是仅通过文件名来查找文件?
我一直在广泛使用 Ctrl + Shift + 来查找和打开 Eclipse 项目中的文件。但有时我知道我的文件(或其中一部分)所在的目录,但我不确切知道它们的名称。
在进行搜索时,似乎只考虑文件的名称,而不考虑它们的路径。我希望能够通过路径优化搜索。
例如,如果我有一个文件夹 X,其中包含 3 个文件,我希望输入 X 会显示这 3 个文件,这样我就可以选择它们。或者它实际上让我选择 X 文件夹本身!
有没有办法在 Eclipse 中做到这一点?
I have been using extensively Ctrl + Shift + to find and open files in my Eclipse project. But sometimes I know the directory where my files are (or part of it) but I don't know exactly their names.
When doing search, it seems it only takes into consideration the name of the files, and not their paths. I'd like to be able to refine the search by path.
For instance, if I have a folder X with 3 files in it, I'd like that typing X would bring up the 3 files, so I could choose them. Or that it'd actually let me select the X folder itself!
Is there a way to do this in Eclipse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
*X/
以列出所有资源文件位于文件夹X
中。前搜索:*myDir/myFile
。重要提示:需要前面的星号 (
*
) 才能使搜索也适用于文件夹和路径。*X/
to list all files in the folderX
. Ex search:*myDir/myFile
.Important: the preceding asterisk (
*
) is required to make the search apply to folders and paths too.以下是实施说明: https://bugs.eclipse.org/bugs/show_bug .cgi?id=86973
Here are the implementation notes: https://bugs.eclipse.org/bugs/show_bug.cgi?id=86973