qingy2019
qingy2019

Reputation: 642

What is the fileTemplates folder in IntelliJ?

I just found these files hidden into my .idea folder in an IntelliJ project. How am I supposed to use them?

What are they for???

enter image description here

Thanks for your help!

Upvotes: 1

Views: 104

Answers (2)

user302543
user302543

Reputation: 59

Those files are the templates for when you create a new file,

For example, if you create a new class in IntelliJ, it will follow that template. You can customize these templates (by going to Settings/Preferences and Editor | File and Code Templates) to save time writing code!

Upvotes: 2

CrazyCoder
CrazyCoder

Reputation: 401975

These are your project specific file and code templates.

project templates

Upvotes: 2

Related Questions