動画のダウンロードがしたいのですが、以下のコードを書きました。
python
1import requests 2 3response = requests.get('https://www.youtube.com/watch?v=i7k4eGRD60g&list=RDi7k4eGRD60g&start_radio=1') 4with open('C:/Users/detec/Desktop', 'wb') as saveFile:\ 5 saveFile.write(response.content)
しかしエラーが・・・。
Traceback (most recent call last): File "johnnys.py", line 4, in <module> with open('C:/Users/detec/Desktop', 'wb') as saveFile:\ PermissionError: [Errno 13] Permission denied: 'C:/Users/detec/Desktop'
何が原因ですか?
'C:/Users/detec/Desktop'に対する書き込み権限がないのではないでしょうか?
ではどうすればよいのでしょうか・・。