VSCode运行C程序时报错luanch:program does not exsist

重新要学一遍C语言,安装好VS Code后按照网上的配置过程成功运行了一遍C程序,但是第二天重新打开的时候就报错!

VSCode运行C程序时报错luanch:program does not exsist_第1张图片

检查了tasks.json、launch.json发现没有错误,仔细查看了一下是路径的问题,因为lanch中有program的声明

VSCode运行C程序时报错luanch:program does not exsist_第2张图片

而我是先打开json所在的路径再打开.c文件所在的路径,导致launch.json无法访问到workspaceRoot,这样的情况下应该直接选择打开文件夹选项,选择.c文件和json文件的上一级目录,我的在Cprogram下,需要注意的是目录名字一定不能包含中文或是空格!!!

VSCode运行C程序时报错luanch:program does not exsist_第3张图片

打开Cprogram里面包含.c文件和包含配置需要各种json的.vscode文件

VSCode运行C程序时报错luanch:program does not exsist_第4张图片

选择重新打开Cprogram文件夹后程序就能正确执行了

VSCode运行C程序时报错luanch:program does not exsist_第5张图片

你可能感兴趣的:(VSCode)