Python当前工作目录设置为主路径而不是脚本目录

问题描述 投票:0回答:1

在执行以下脚本时,为什么不在当前工作目录(脚本位置)中将json文件写入磁盘?不应该dump()这样做吗?

def getShotFolders():
    shotDict = {
        "root" : shotExample,
        "shot_subdirs" : []
    }  
    for root, dirs, files in os.walk(shotExample, topdown=False):
        if root != shotExample:
            shotDict["shot_subdirs"].append(os.path.relpath(root,shotExample))

    pprint(shotDict)
    with open("shot_folderStructure.json", "w") as write_file: 
        json.dump(shotDict, write_file )

getShotFolders()

编辑:好的,我从vscode运行我的python文件,右键单击'在终端执行python文件',输出C:/Python27/python.exe c:/Users/user/Desktop/test.py命令。

如果我使用与项目解释器相同的python设置从pycharm运行脚本,则会创建json文件,但为什么呢?

EDIT2:出于某种原因,当我执行脚本时,cwd是我的主文件夹,不应该是python脚本的路径。我知道这可以通过os.chdir(os.path.dirname(__file__))修复,但不应该这样吗?

python json python-2.7 visual-studio-code
1个回答
0
投票

确保在VS Code中打开C:\Users\user\Desktop文件夹,以便将cwd设置为桌面(如果直接打开文件,则不会更改工作目录)。

© www.soinside.com 2019 - 2024. All rights reserved.