Python 官方文档:入门教程 => 点击学习
如果只是想下载文件,那么urllib2模块就可以轻松完成这个任务,而且比FTP更简单,但是FTP一些特殊功能urllib2模块不具备。(网络编程基础P277) #!/usr/bin/python #-*- coding:UTF-8 -*
- #!/usr/bin/python
- #-*- coding:UTF-8 -*-
-
- from ftplib import import FTP
-
- f = FTP('ftp.kernel.ort')
- f.login()
-
- f.cwd('/pub/linux/kernel/v1.0')
- fd = open('patch8.gz', 'wb')
- f.retrbinary('RETR patch8.gz', fd.write)
- fd.close()
-
- f.quit()
- #!/usr/bin/python
- #-*- coding:UTF-8 -*-
-
- from ftplib import import FTP
- import sys
-
- f = FTP('ftp.kernel.ort')
- f.login()
-
- f.cwd('/pub/linux/kernel/v1.0')
- f.voidcmd("TYPE I")
-
- datasock, estsize = f.ntransfercmd("RETR linux-1.0.tar.gz")
- transbytes = 0
- fd = open('linux-1.0.tar.gz', 'wb')
- while 1:
- buf = datasock.recv(2048)
- if not len(buf):
- break
- fd.write(buf)
- transbytes += len(buf)
- sys.stdout.write("Received %d" % transbytes)
-
- if estsize:
- sys.stdout.write("of %d bytes (%.1f%%)\r" % (estsize, 100.0 * float(transbytes) / float(estsize)))
- else:
- sys.stdout.write("bytes\r")
- sys.stdout.flush()
- sys.stdout.write("\n")
- fd.close()
- datasock.close()
- f.voidresp()
-
- f.quit()
--结束END--
本文标题: python实现FTP功能
本文链接: https://lsjlt.com/news/184281.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0