尝试将python文件写入目录会导致权限错误13

时间:2018-02-09 19:21:18

标签: python

我试图将python文件写入目录,但每当我运行代码时,我都会犯错误13。我已经查看了很多解决方案,但没有一个能为我工作。我的代码如下:

import os
dirget = (os.getcwd())
findir = (dirget + "\\files")
if not os.path.exists(dirget + "\\files"):
    os.makedirs(dirget + "\\files")
with open(findir, 'w+') as file:
        file.write("hello")

我收到的错误是:

PermissionError: [Errno 13] Permission denied: 
'C:\\Users\\Me\\Desktop\\files'

非常感谢任何帮助,谢谢。

0 个答案:

没有答案