我有兩個文件夾:In,Out - 它不是磁盤D上的系統文件夾: - Windows 7. Out包含「myfile.txt」我運行以下python命令:Python。 IOError:[Errno 13]權限被拒絕:當我複製文件時
>>> shutil.copyfile(r"d:\Out\myfile.txt", r"D:\In")
Traceback (most recent call last):
File "<pyshell#39>", line 1, in <module>
shutil.copyfile(r"d:\Out\myfile.txt", r"D:\In")
File "C:\Python27\lib\shutil.py", line 82, in copyfile
with open(dst, 'wb') as fdst:
IOError: [Errno 13] Permission denied: 'D:\\In'
問題是什麼?
使用資源管理器,我可以做的myfile.txt的複製到文件夾 –