gpt4 book ai didi

python - 使用python ftp下载文件时如何确定路径

转载 作者:太空宇宙 更新时间:2023-11-03 20:47:13 25 4
gpt4 key购买 nike

使用 python ftp 下载文件时如何确定路径

从 ftp 服务器下载文件时

默认下载在哪个路径下就可以了

如何设置特定路径

使用ftplib库

from ftplib import FTP

FTP = FTP('-----------')
FTP.login(user='----------', passwd ='--------')

filename = 'index.txt'
localfile = open(filename, 'wb')
FTP.retrbinary('RETR ' + filename, localfile.write, 1024)

最佳答案

改用这个:

import os
path = "C:\\Users\MyHome\Documents"
os.chdir(path)

关于python - 使用python ftp下载文件时如何确定路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56507782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com