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

时间:2019-06-08 15:36:38

标签: python ftplib

使用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)

1 个答案:

答案 0 :(得分:0)

改为使用此:

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