現在、これを使用してファイルをダウンロードしていますが、実行元の同じフォルダーにファイルを配置していますが、ダウンロードしたファイルを別のディレクトリに保存するにはどうすればよいですか?.
r = requests.get(url)
with open('file_name.pdf', 'wb') as f:
f.write(r.content)
または、Linuxの場合:
# To save to an absolute path.
r = requests.get(url)
with open('/path/I/want/to/save/file/to/file_name.pdf', 'wb') as f:
f.write(r.content)
# To save to a relative path.
r = requests.get(url)
with open('folder1/folder2/file_name.pdf', 'wb') as f:
f.write(r.content)
詳細については open()function docsをご覧ください。
open
に完全なファイルパスまたは相対ファイルパスを指定することができます
r = requests.get(url)
with open(r'C:\path\to\save\file_name.pdf', 'wb') as f:
f.write(r.content)
ディレクトリにアクセスできる限り、file_name.pdf'
から'/path_to_directory_you_want_to_save/file_name.pdf'
そして、それはあなたが望むことをするはずです。