Why is the out
folder and all its content highlighted? Does it mean I did something wrong?
Asked
Active
Viewed 388 times
2
-
This is your project after compiling. No need to worry about it. You can see the project structure after compiling in it – Lê Hoàng Dững Aug 13 '20 at 05:27
-
3Does this answer your question? [What is the function of the "out" and ".idea" folder in Intellij?](https://stackoverflow.com/questions/44362009/what-is-the-function-of-the-out-and-idea-folder-in-intellij) – Ravi Ranjan Aug 13 '20 at 05:28
2 Answers
4
This is the project compiler output directory. The red color means that it is excluded directory in project. Files in excluded folders are ignored by code completion, navigation and inspection.

Andrey
- 15,144
- 25
- 91
- 187
0
This folder is created when you're compiling your project and contains compiled classes.

Kici33
- 5
- 4