1

我有一个目录/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'

有什么帮助吗?

4

1 回答 1

7

从文件系统的角度来看,目录是一种文件。你不能有两个同名的文件。

于 2013-03-20T19:36:14.297 回答