目前,我使用它来下载文件,但它将它们放在运行它的同一文件夹中,但是如何将下载的文件保存到我选择的另一个目录中。
r = requests.get(url)
with open('file_name.pdf', 'wb') as f:
f.write(r.content)
答案 0 :(得分:11)
或者如果在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文档。
答案 1 :(得分:2)
您可以只为open
提供完整的文件路径或相对文件路径
r = requests.get(url)
with open(r'C:\path\to\save\file_name.pdf', 'wb') as f:
f.write(r.content)
答案 2 :(得分:0)
只要您有权访问该目录,就可以将true
更改为file_name.pdf'
,这应该是您想要的。