我有一个目录/project/my_name/
我需要创建一个文件/project/my_name
但 :
with open(filename, 'w') as outfile:
outfile.write(my_content)
增加IOError: [Errno 21] Is a directory: u'/project/my_name'
有什么帮助吗?
我有一个目录/project/my_name/
我需要创建一个文件/project/my_name
但 :
with open(filename, 'w') as outfile:
outfile.write(my_content)
增加IOError: [Errno 21] Is a directory: u'/project/my_name'
有什么帮助吗?