檔案操作是開發中經常遇到的場景,那麼如何判斷一個物件是檔案物件呢?下面我們總結了3種常見的方法。
方法1:比較型別
第一種方法,就是判斷物件的type是否為file
python >>> fp = open(r"/tmp/pythontab.com") >>> type(fp) <type 'file'> >>> type(fp) == file True
注意:該方法對於從file繼承而來的子類不適用, 看下面的例項
class fileDetect(file): pass # 中間程式碼無所謂,直接跳過不處理 fp2 = fileDetect(r"/tmp/pythontab.com") fileType = type(fp2) print(fileType)
結果:
<class '__main__.fileDetect'>
方法2:isinstance方法
要判斷一個物件是否為檔案物件(file object),可以直接用isinstance()判斷。
如下程式碼中,open得到的物件fp型別為file,當然是file的例項,而filename型別為str,自然不是file的例項
>>> 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
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