问题
【VSCODE】当前工作目录非当前文件夹/pathlib打印cwd路径错误
方法
修改.vscode/launch.json文件,文件末尾增加cwd一行,如下:
{ // 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。 // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Python: Current File", "type": "python", "request": "launch", "program": "${file}", "console": "integratedTerminal", "justMyCode": true, "cwd": "${fileDirname}" } ] }