web-dev-qa-db-ja.com

リクエストからダウンロードしたファイルを別のディレクトリに保存する方法は?

現在、これを使用してファイルをダウンロードしていますが、実行元の同じフォルダーにファイルを配置していますが、ダウンロードしたファイルを別のディレクトリに保存するにはどうすればよいですか?.

r = requests.get(url)  
with open('file_name.pdf', 'wb') as f:
    f.write(r.content)
5
Nitanshu

または、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をご覧ください。

23
Jonny

openに完全なファイルパスまたは相対ファイルパスを指定することができます

r = requests.get(url)  
with open(r'C:\path\to\save\file_name.pdf', 'wb') as f:
    f.write(r.content)
2
CoryKramer

ディレクトリにアクセスできる限り、file_name.pdf'から'/path_to_directory_you_want_to_save/file_name.pdf'そして、それはあなたが望むことをするはずです。

0
Billy Ferguson