当前位置:
首页 > Python基础教程 >
-
Python判断对象是否为文件对象(file object)的三种方法
文件操作是开发中经常遇到的场景,那么如何判断一个对象是文件对象呢?下面我们总结了3种常见的方法。
方法1:比较类型
第一种方法,就是判断对象的type是否为file
1
2
3
4
5
6
|
python >>> fp = open (r "/tmp/pythontab.com" ) >>> type (fp) < type 'file' > >>> type (fp) == file True |
注意:该方法对于从file继承而来的子类不适用, 看下面的实例
1
2
3
4
5
|
class fileDetect( file ): pass # 中间代码无所谓,直接跳过不处理 fp2 = fileDetect(r "/tmp/pythontab.com" ) fileType = type (fp2) print (fileType) |
结果:
1
|
<class '__main__.fileDetect' > |
方法2:isinstance方法
要判断一个对象是否为文件对象(file object),可以直接用isinstance()判断。
如下代码中,open得到的对象fp类型为file,当然是file的实例,而filename类型为str,自然不是file的实例
1
2
3
4
5
6
7
8
9
|
>>> isinstance(fp, file ) True >>> isinstance(fp2, file ) True >>> filename = r "/tmp/pythontab.com" >>> type (filename) < type 'str' > >>> isinstance(filename, file ) False |
方法3:推测法
在python中,类型并没有那么重要,重要的是”接口“。如果它走路像鸭子,叫声也像鸭子,我们就认为它是鸭子(起码在走路和叫声这样的行为上)。
按照这个思路我们就有了第3中判断方法:判断一个对象是否具有可调用的read,write,close方法(属性)。
参看:http://docs.python.org/glossary.html#term-file-object
1
2
3
4
5
6
7
8
9
10
11
12
13
|
def isfile(f): """ Check if object 'f' is readable file-like that it has callable attributes 'read' , 'write' and 'close' """ try : if isinstance ( getattr (f, "read" ), collections. Callable ) \ and isinstance ( getattr (f, "write" ), collections. Callable ) \ and isinstance ( getattr (f, "close" ), collections. Callable ): return True except AttributeError: pass return False |
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式