0

使用 python (2.7.3) 在已安装的 afp 卷上写入是否存在已知问题?

>f = open("/mnt/foo/test.txt","w+");

这导致

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IOError: [Errno 5] Input/output error: '/mnt/foo/test.txt'

python 创建文件,但我也无法使用文件对象。当我尝试与以前相同但使用现有文件时,一切正常,没有错误。

4

1 回答 1

1

请检查/mnt/foo/test.txt文件的权限。那将解决问题。

于 2014-10-23T11:12:26.993 回答