How do I get IntelliJ IDEA to display directories?

JavascriptIntellij Idea

Javascript Problem Overview


I've been trying out IntelliJ IDEA for JavaScript editing, and I like it so far, but I'm having a small problem with a new project.

I can't seem to be able to get IDEA to display the directories in the project directory in the Project view. Even if I manually add a directory, it refuses to display it.

I think this probably has something to do with the fact that it tries to apply Java conventions, but when I imported an old Eclipse project, it showed all directories just fine.

Do I have to use Eclipse to create projects and import in IDEA to get the directories visible, or is there some other trick?

I am using IDEA version 8.1.3, and the code is just a plain bunch of HTML and JavaScript files, not in any kind of a Java environment.

Javascript Solutions


Solution 1 - Javascript

It appears I need to manually create a Java module (File->New Module) inside the project to actually see the "proper" directory view. I do wonder why it didn't show up when I created it with the project.

Solution 2 - Javascript

I've been struggling with this same problem and found another reason why directories may not show up correctly. Make sure the "Content Root" is correct.

  • Click on the project
  • Select "File"->"Project Structure"
  • Select "modules" from the left column, and select a module.

On the sources tab you will see the current "Content Root" along with a button to add a new content root.

Make sure that content root is correct. When in the project structure view you will only see files below the "Content Root". I'm fairly new to IntelliJ but I think of the content root as the basedir in ant terms.

These instructions are for IntelliJ 9.x

Hope this helps someone.

Solution 3 - Javascript

Current more straightforward logic:

  • remove the .idea/ folder
  • select in Idea File -> New project.
  • in left menu select Web Module, and then set up project folder
  • you're done!

Solution 4 - Javascript

I found the solution thanks to Thurman Sanders and decided to post a more clear answer, in case it helps anyone else. I know an answer like this would have saved me 5 minutes of fumbling around.

Problem

Some folders are excluded, by default. In most cases, this is exactly what you want. Other times, you need to see your "build" or "target" folder, for example.

Solution

Make Intellij stop excluding the folder you want to see

  1. Open the Module Settings
  • select the module and press F4
  • or right click the module and choose "open module settings"
  • or press cmd; to open project settings, then select your module
  1. Follow the steps in the picture, below:
  • select the 'sources' tab
  • select the folder you want to see
  • disable the 'excluded' option
  1. Press OK
  • When you're done, the folder will turn orange and finally be visible in the project view!

enter image description here

Solution 5 - Javascript

Simplest way to do this!

Reading some of the other answers, they require you to go into Project Structure -> Modules and check that the sources are not excluded.

But in my case - there are no modules defined in the project at all, so that didn't help.

To easily create a module for your project and therefore show the folder structure -

  • Go to File menu -> New -> Project...
  • Select Static Web. Note: it does not matter if your project is "web" or not!
  • Hit next, then fill in the same Project Name: and Project location: as you have already.
  • IntelliJ will say "File Already Exists" - "Would you like to overwrite it?" - answer Yes.

Bam! Your Project Pane with the Project view selected should now instantly show the folder structure of your project.

If you have a maven project, you will need to add the root pom.xml in the Maven Projects window.

And if you want to add java to your project later, you should probably configure a JDK also.

Solution 6 - Javascript

Just use File » New Project » Static Web. All your files and directories will show up.

IntelliJ IDEA New Project dialog

Solution 7 - Javascript

File -> Invalidate Caches / Restart worked for me.

Solution 8 - Javascript

The same problem had me going crazy for a couple of hours as well, coming from Netbeans where I could just start a new project and import any source tree. My project is PHP/JS and has nothing to do with Java, so it was not intuitive to have to create a Java module, just so I could see my files listed.

I found the solution (covered above) here for more insight.

Solution 9 - Javascript

Here is how I was able to "display" all folders in my project:

  1. Somehow get to the Project Settings page (for me it was right-click the project then select Modules)

  2. Make sure the Sources tab is selected

  3. You should see a section in the middle entitled "Excluded Folders" under Source\Folders"

  4. Click on the X next to it to remove it from being excluded and it becomes visible.

Hope it this helps.

Solution 10 - Javascript

I think this is happening to you as intellij's Project window has the 'Compact Empty Middle Packages' option as checked by default. You will find this option under Setting section of the Projects tab.

Solution 11 - Javascript

I had a test folder which wasn't displaying in IntelliJ. It turned out that it had no files in it, IntelliJ was only showing folders that had some files in them. When i manually added files in test folder via Explorer, it reflected back in IDE.

Solution 12 - Javascript

It happens sometime. You need to go to the configuration (Project Settings) and add the Source folder as content root and then possibly set source/resource etc. from the configuration tab. Apply all the changes and you should be done.

Solution 13 - Javascript

Just me own 2c. I used "New" -> "Module from existing sources" to get IntelliJ to show folders and files from inside a Github Java project. Hope this helps someone.

Solution 14 - Javascript

Platform : Intellij2019.3 Macos10.12

  • The solution is:
    1. go to the File - project structure - Modules
    2. In the left column, + Add Content Root, and add the folder you hope to use as the root directory.
    3. mark the folder you want to compile as source root
    4. rebuild

Solution 15 - Javascript

Just go to View -> Tool windows -> project or Alt+1

Solution 16 - Javascript

I had a similar problem, this fixed it:

File -> New -> Module from Existing Sources...

I chose the src folder and then it detected the rest on its own.

If you still have issues, try reimporting project by doing:

File -> New -> Project from Existing Sources...

Solution 17 - Javascript

In the project explorer window (where all the classes are), switch from "packages" view to "project" view. Then all files, not just classes are displayed.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJani HartikainenView Question on Stackoverflow
Solution 1 - JavascriptJani HartikainenView Answer on Stackoverflow
Solution 2 - JavascriptTravis SchneebergerView Answer on Stackoverflow
Solution 3 - JavascriptlifecoderView Answer on Stackoverflow
Solution 4 - JavascriptgMaleView Answer on Stackoverflow
Solution 5 - JavascriptvikingsteveView Answer on Stackoverflow
Solution 6 - Javascriptneu242View Answer on Stackoverflow
Solution 7 - JavascriptDax FohlView Answer on Stackoverflow
Solution 8 - JavascriptjontycView Answer on Stackoverflow
Solution 9 - JavascriptThurman SandersView Answer on Stackoverflow
Solution 10 - JavascriptsolView Answer on Stackoverflow
Solution 11 - JavascriptMr. WonderfulView Answer on Stackoverflow
Solution 12 - JavascriptAnindya MukherjeeView Answer on Stackoverflow
Solution 13 - JavascriptKevin HutchinsonView Answer on Stackoverflow
Solution 14 - JavascriptAlex ZhengView Answer on Stackoverflow
Solution 15 - JavascriptTrang NguyenView Answer on Stackoverflow
Solution 16 - JavascriptSharpView Answer on Stackoverflow
Solution 17 - JavascriptAndreas PeterssonView Answer on Stackoverflow