我正在尝试使用Python将JSON文件写入文件系统。当我去阅读文件时,那里什么也没有。我想我做错了其他事情。
这是我的代码:
today = datetime.today()
output_dir = "../../../json/iam"
output_file = output_dir + 'pol-aws-secrets-manager-' + user_name + today +'.json'
policy_doc = {"blah":"blah"}
with open(output_file, 'w+') as writer:
json.dump(policy_doc,writer)
我在做什么错了?