- Python-网络编程
- Python-网络简介
- Python-网络环境
- Python - 互联网协议
- Python-IP 地址
- Python-DNS 查找
- Python-路由
- Python - HTTP 请求
- Python-HTTP 响应
- Python - HTTP 标头
- Python - 自定义 HTTP 请求
- Python - 请求状态代码
- Python-HTTP 身份验证
- Python - HTTP 数据下载
- Python - 连接重用
- Python - 网络接口
- Python-套接字编程
- Python-HTTP 客户端
- Python-HTTP 服务器
- Python - 构建 URL
- Python - Web表单提交
- Python - 数据库和 SQL
- Python-远程登录
- Python - 电子邮件消息
- Python-SMTP
- Python-POP3
- Python-IMAP
- Python-SSH
- Python-FTP
- Python-SFTP
- Python - Web 服务器
- Python-上传数据
- Python-代理服务器
- Python - 目录列表
- Python-远程过程调用
- Python - RPC JSON 服务器
- Python - 谷歌地图
- Python - RSS 源
Python - 目录列表
Python 可用于从目录中获取内容列表。我们可以编写程序来列出运行 python 的同一台机器中的目录内容。我们还可以登录远程系统并列出远程目录中的内容。
列出本地目录
在下面的示例中,我们使用 listdir() 方法来获取当前目录的内容。为了还指示文件或目录等内容的类型,我们使用更多函数来评估内容的性质。
for name in os.listdir('.'): if os.path.isfile(name): print 'file: ', name elif os.path.isdir(name): print 'dir: ', name elif os.path.islink(name): print 'link: ', name else: print 'unknown', name
当我们运行上面的程序时,我们得到以下输出 -
file: abcl.htm dir: allbooks link: ulink
请注意,以上内容特定于运行 python 程序的系统。结果将根据系统及其内容而有所不同。
列出远程目录
我们可以通过使用ftp访问远程系统来列出远程目录的内容。建立连接后,我们可以使用命令以类似于列出本地目录的方式列出目录内容。
from ftplib import FTP def main(): ftp = FTP('ftp.ibiblio.org') ftp.login() ftp.cwd('pub/academic/biology/') # change to some other subject entries = ftp.nlst() ftp.quit() print(len(entries), "entries:") for entry in sorted(entries): print(entry) if __name__ == '__main__': main()
当我们运行上面的程序时,我们得到以下输出 -
(6, 'entries:') INDEX README acedb dna-mutations ecology+evolution molbio