Format files from the command line
Last modified: 19 May 2021
You can find the executable for running IntelliJ IDEA in the installation directory under bin. To use this executable as the command-line launcher, add it to your system PATH
as described in Command-line interface.
- Syntax
idea64.exe format [<options>] <path ...>
note
Use
idea.exe
for 32-bit versions of Windows.- Examples
Format two specific files from the C:
\Data directory using the default code style settings:\src >idea64.exe format C:\Data\src\hello.html C:\Data\src\world.html
Recursively format all files in the C:
\Data directory including all subdirectories using the default code style settings:\src >idea64.exe format -r C:\Data\src
Non-recursively format all the .xml and .html files in the C:
\Data directory using code style settings from C:\src \Data :\settings.xml >idea64.exe format -s C:\Data\settings.xml -m *.xml,*.html C:\Data\src