访问FTP,无非两件事情:upload和download,最近在项目中需要从ftp下载大量文件,然后我就试着去实验自己的ftp操作类,如下(PS:此段有问题,别复制使用,可以参考去试验自己的ftp类!)
import os from ftplib import FTP class FTPSync(): def __init__(self, host, usr, psw, log_file): self.host = host self.usr = usr self.psw = psw self.log_file = log_file def __ConnectServer(self): try: self.ftp = FTP(self.host) self.ftp.login(self.usr, self.psw) self.ftp.set_pasv(False) return True except Exception: return False def __CloseServer(self): try: self.ftp.quit() return True except Exception: return False def __CheckSizeEqual(self, remoteFile, localFile): try: remoteFileSize = self.ftp.size(remoteFile) localFileSize = os.path.getsize(localFile) if localFileSize == remoteFileSize: return True else: return False except Exception: return None def __DownloadFile(self, remoteFile, localFile): try: self.ftp.cwd(os.path.dirname(remoteFile)) f = open(localFile, 'wb') remoteFileName = 'RETR ' + os.path.basename(remoteFile) self.ftp.retrbinary(remoteFileName, f.write) if self.__CheckSizeEqual(remoteFile, localFile): self.log_file.write('The File is downloaded successfully to %s' + '\n' % localFile) return True else: self.log_file.write('The localFile %s size is not same with the remoteFile' + '\n' %localFile) return False except Exception: return False def __DownloadFolder(self, remoteFolder, localFolder): try: fileList = [] self.ftp.retrlines('NLST', fileList.append) for remoteFile in fileList: localFile = os.path.join(localFolder, remoteFile) return self.__DownloadFile(remoteFile, localFile) except Exception: return False def SyncFromFTP(self, remoteFolder, localFolder): self.__DownloadFolder(remoteFolder, localFolder) self.log_file.close() self.__CloseServer()

Python适合数据科学、Web开发和自动化任务,而C 适用于系统编程、游戏开发和嵌入式系统。 Python以简洁和强大的生态系统着称,C 则以高性能和底层控制能力闻名。

2小时内可以学会Python的基本编程概念和技能。1.学习变量和数据类型,2.掌握控制流(条件语句和循环),3.理解函数的定义和使用,4.通过简单示例和代码片段快速上手Python编程。

Python在web开发、数据科学、机器学习、自动化和脚本编写等领域有广泛应用。1)在web开发中,Django和Flask框架简化了开发过程。2)数据科学和机器学习领域,NumPy、Pandas、Scikit-learn和TensorFlow库提供了强大支持。3)自动化和脚本编写方面,Python适用于自动化测试和系统管理等任务。

两小时内可以学到Python的基础知识。1.学习变量和数据类型,2.掌握控制结构如if语句和循环,3.了解函数的定义和使用。这些将帮助你开始编写简单的Python程序。

如何在10小时内教计算机小白编程基础?如果你只有10个小时来教计算机小白一些编程知识,你会选择教些什么�...

使用FiddlerEverywhere进行中间人读取时如何避免被检测到当你使用FiddlerEverywhere...

Python3.6环境下加载Pickle文件报错:ModuleNotFoundError:Nomodulenamed...

如何解决jieba分词在景区评论分析中的问题?当我们在进行景区评论分析时,往往会使用jieba分词工具来处理文�...


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

EditPlus 中文破解版
体积小,语法高亮,不支持代码提示功能

记事本++7.3.1
好用且免费的代码编辑器

VSCode Windows 64位 下载
微软推出的免费、功能强大的一款IDE编辑器