Last active
February 9, 2025 16:04
-
-
Save shnam7/953d19da155ecb32b4a2923589d6748d to your computer and use it in GitHub Desktop.
PlatformIO - Changing default projects location in vscode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Open PlatformIO terminal: Press <Ctrl>+P and type "platformIO: Net Terminal" | |
| 2. In the PlatformIO terminal, execute following command | |
| > platformio settings get projects_dir # check current default location | |
| > platformio settings set projects_dir "New Directory" | |
| 3. short command | |
| > pio settings get projects_dir | |
| > pio settings set projects_dir "New Directory" | |
| reference: https://docs.platformio.org/en/latest/core/userguide/cmd_settings.html#platformio-settings-set |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great. Thank you for sharing!