vscode platformio修改默认的工程目录
根据官方文档pio settings章节,在VSCode中打开PlatformIO终端,通过pio settings
命令修改默认工程目录:
# 查看所有可设置选项
pio settings get
# 设置默认工程目录(默认为~/Documents/PlatformIO/Projects)
pio settings set projects_dir ~/Documents/PlatformIO/Projects
# 设置是否启用PlatformIO 诊断数据收集(默认为Yes)
pio settings set enable_telemetry Yes
# 还原默认值
pio settings reset
platformio设置参考
欢迎讨论,相互学习。
cdtxw@foxmail.com