在Python中,可以使用os
模块来改变下载路径。具体步骤如下:
os
模块:import os
os.chdir()
函数来改变当前工作目录(即下载路径),将下载的文件保存到指定的目录中。例如,将下载路径设置为C:\Downloads
:os.chdir("C:/Downloads")
import requests
url = "https://example.com/file.txt"
response = requests.get(url)
with open("file.txt", "wb") as file:
file.write(response.content)
这样就可以将下载的文件保存到C:\Downloads
目录中。