I wish to search just directory (folder) names and packages within the modules of my current project.
How can I do this?
CTRL+Shift+N<
It seems IntelliJ doesn't directly support this. Here are the best alternatives I've thought of so far:
I suggest these steps if there is nothing in the folder yet (Windows):
find . -iname 'SomeFolderName*'
If there is already something in the folder, I suggest you do this:
*/META-INF/*
)