IPR vs .IDEA
What is the difference between the two formats? I can't seem to find any documentation on this.
IPR -> File based
.IDEA -> Directory based
I noticed ipr creates 3 files, and .idea creates a directory.
Are the whole contents of the directory in the 3 files?
Is there an advantage of 1 format over the other? (Load speed? Portability?)
Please sign in to leave a comment.
The directory based format (.idea) is more advantageous when storing a project in version control or otherwise sharing projects. It breaks settings into separate files. From Help > IntelliJIDEA > Concepts > Project:
Directory based structure is the newer format, and in my humble opinion, is the better way to go.
You can convert a .ipr file to a .idea project via File | Open in New (Directory-Based) Format in IDEA 8 or File | Save as Director- Based Format in IDEA 9 (and possibly later IDEA 8 versions)
How can I open a directory-based IDEA project from Windows Explorer? Sometimes I prefer to just "click a project to open it", as I could do with the .ipr file. It seems that now I need to first open IDEA, then open the project... Is that so?