1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
| import sys,os,ftplib,socket,hashlib print("=====================FTP客户端====================="); HOST = '' username = '' password = '' buffer_size = 8192
def connect(): try: ftp = ftplib.FTP(HOST) ftp.login(username, password) ftp.set_pasv(False) print(ftp.getwelcome()) print('已连接到: %s' % HOST) return ftp except (socket.error,socket.gaierror): print("FTP登陆失败,请检查主机号、用户名、密码是否正确") sys.exit(0)
def dirInfo(ftp): ftp.dir()
def nlstListInfo(ftp): files_list = ftp.nlst() return [file for file in files_list if file != "." and file !=".."]
def pwdinfo(ftp): pwd_path = ftp.pwd() print("FTP当前路径:", pwd_path) return ftp.pwd()
def disconnect(ftp): ftp.quit()
def pwdSkip(ftp,dirPathName): """ 跳转到指定目录 :param ftp: 调用connect()方法的变量 :param dirPathName: FTP服务器的绝对路径 :return: """ try: ftp.cwd(dirPathName) except ftplib.error_perm: print('不可以进入目录:"%s"' % dirPathName) print("当前所在位置:%s" % ftp.pwd())
def checkFileDir(ftp,file_name): """ 判断当前目录下的文件与文件夹 :param ftp: 实例化的FTP对象 :param file_name: 文件名/文件夹名 :return:返回字符串“File”为文件,“Dir”问文件夹,“Unknow”为无法识别 """ rec = "" try: rec = ftp.cwd(file_name) ftp.cwd("..") except ftplib.error_perm as fe: rec = fe finally: if "Not a directory" in str(rec): return "File" elif "Current directory is" in str(rec): return "Dir" else: return "Unknow"
def fileNameMD5(filepath): """ 文件名加密MD5 :param filepath: 本地需要加密的文件绝对路径 :return: 返回加密后的文件名 """ file_name = os.path.split(filepath)[-1] encryption = hashlib.md5() try: file_format = os.path.splitext(file_name)[-1] file_name_section = os.path.splitext(file_name)[0] except IndexError as e: print('%s 文件有误!未发现后缀格式!报错信息:%s' %(file_name,e)) return "无后缀格式的文件" else: encryption.update(file_name_section.encode('utf-8')) newname = "zzuliacgn_" + encryption.hexdigest() + "." + file_format print('MD5加密前为 :' + file_name) print('MD5加密后为 :' + newname) return newname
def upload(ftp, filepath,file_name = None): """ 上传文件 :param ftp: 实例化的FTP对象 :param filepath: 上传文件的本地路径 :param file_name: 上传后的文件名(结合fileNameMD5()方法用) :return: """ f = open(filepath, "rb") if file_name == None: file_name = os.path.split(filepath)[-1]
if find(ftp, file_name) or file_name == "无后缀格式的文件": print("%s 已存在或识别为无后缀格式的文件,上传终止"%file_name) return False else: try: ftp.storbinary('STOR %s'%file_name, f, buffer_size) print('成功上传文件: "%s"' %file_name) except ftplib.error_perm: return False return True
def download(ftp, filename): """ 下载文件 :param ftp: 实例化的FTP对象 :param filename: 需要从FTP下载的文件名 :return: """ f = open(filename,"wb").write try: ftp.retrbinary("RETR %s"%filename, f, buffer_size) print('成功下载文件: "%s"' % filename) except ftplib.error_perm: return False return True
def find(ftp,filename): """ 查找是否存在指定文件或目录 :param ftp: 实例化的FTP对象 :param filename: 需要查询是否存在的文件名 :return: """ ftp_f_list = ftp.nlst() if filename in ftp_f_list: return True else: return False
def mkdir(ftp,dirpath): """ 检查是否有存在指定目录并创建(懒人用的方法) :param ftp: 实例化的FTP对象 :param dirpath: 需要创建的文件夹名及路径 :return: """ if find(ftp, dirpath): print("%s目录已存在!自行跳转到该目录!"%dirpath) pwdSkip(ftp, dirpath) else: print("未发现%s同名文件夹!" % dirpath) try: ftp.mkd(dirpath) print("创建新目录%s!并自行跳转到该目录!" % dirpath) pwdSkip(ftp, dirpath) except ftplib.error_perm: print("目录已经存在或无法创建")
def DeleteFile(ftp,filepath = "/",file_name = None): """ 删除目录下文件,字面意思 :param ftp: 实例化的FTP对象 :param filepath: 操作的路径,默认值“/” :param file_name: 需要删除的文件名,若不填,默认删除目录下所有的文件 :return: """ pwdSkip(ftp,filepath) if find(ftp,file_name) and file_name != None: ftp.delete(file_name) print("%s 已删除!"%file_name) elif file_name == None: filelist = nlstListInfo(ftp) for i in filelist: if checkFileDir(ftp,i) == "File": ftp.delete(i) print("%s 是文件,已删除!" % i) elif checkFileDir(ftp,i) == "Dir": print("%s 是文件夹" % i) else: print("%s 无法识别,跳过" % i) else: print("%s 未找到,删除中止!" % file_name)
def DeleteDir(ftp,dirpath,dir_name = None): """ 删除目录下的空文件夹,非空文件夹和文件不会删除 :param ftp: 实例化的FTP对象 :param dirpath: 操作的路径 :param dir_name: 需要删除的文件夹名,若不填,默认删除目录下所有的文件 :return: """ pwdSkip(ftp, dirpath) if find(ftp,dir_name) and dir_name != None: ftp.delete(dir_name) print("%s 已删除!"%dir_name) elif dir_name == None: filelist = nlstListInfo(ftp) for i in filelist: if checkFileDir(ftp,i) == "File": print("%s 是文件,不与理会!" % i) elif checkFileDir(ftp,i) == "Dir": try: ftp.rmd(i) print("%s 是文件夹,已删除!" % i) except ftplib.error_perm as e: print('无法删除 %s,文件夹里似乎还有东西!报错信息:"%s"' %(i,e)) else: print("%s 无法识别,跳过" % i)
else: print("%s 未找到,删除中止!" % dir_name)
def listdir(ftp,fulllist): dir_list = [] haveDir_list = [] for file in fulllist: if checkFileDir(ftp, file) == "Dir": dir_list.append(file) for file in dir_list: ftp.cwd(file) if nlstListInfo(ftp) != []: haveDir_list.append(file) ftp.cwd("..") return haveDir_list
def TraversingIter(ftp,path = "/"): ftp.cwd(path) haveDir_list = listdir(ftp, nlstListInfo(ftp)) if haveDir_list == []: print("%s"%(ftp.pwd())) return ftp.pwd() it = iter(haveDir_list) return TraversingIter(ftp,next(it))
def DeleteDirFiles(ftp,dirpath = "/"): """ 搜索(遍历)删除文件夹或文件 :param ftp: 调用connect()方法的变量 :param dirpath:限定搜索的路径范围,默认值为“/”根目录 :return: """ path = "" pwdSkip(ftp, dirpath) while dirpath != path: path = TraversingIter(ftp, dirpath) DeleteFile(ftp, path) DeleteDir(ftp, path) print("删除完毕!%s目录下已清空"%dirpath)
def main(): ftp = connect() try:
dirInfo(ftp)
nlstListInfo(ftp)
pwdinfo(ftp)
pwdSkip(ftp, "/")
file_name = "test" checkFileDir(ftp, file_name)
filepath = "D:\\workspace\\PythonSpace\\Spyder\\RequestsSpyder\\1.jpg" file_name = fileNameMD5(filepath) upload(ftp, filepath, file_name)
dirPathName = "/" pwdSkip(ftp, dirPathName) filename = "test" download(ftp, filename)
filename = "test" if find(ftp, filename): print("存在") else: print("不存在")
dirpath = "test" mkdir(ftp, dirpath)
filepath = "/test" file_name = "test233.jpg" DeleteFile(ftp, filepath, file_name)
filepath = "/test" file_name = "test233.jpg" DeleteFile(ftp, filepath, file_name)
listdir(ftp, nlstListInfo(ftp))
DeleteDirFiles(ftp)
except ftplib.error_perm as e: print(e) finally: disconnect(ftp)
if __name__ == '__main__': main()
|