当前位置:天才代写 > tutorial > Python教程 > Python判定上传文件范例

Python判定上传文件范例

2017-11-02 08:00 星期四 所属: Python教程 浏览:684

在开拓上传处事时,常常需要对上传的文件举办过滤。

本文为各人提供了python通过文件头判定文件范例的要领,很是实用。

代码如下

import struct 
# 支持文件范例 
# 用16进制字符串的目标是可以知道文件头是几多字节 
# 各类文件头的长度纷歧样,少半2字符,长则8字符 
def typeList(): 
  return { 
    "52617221": EXT_RAR, 
    "504B0304": EXT_ZIP} 
 
# 字节码转16进制字符串 
def bytes2hex(bytes): 
  num = len(bytes) 
  hexstr = u"" 
  for i in range(num): 
    t = u"%x" % bytes[i] 
    if len(t) % 2: 
      hexstr += u"0" 
    hexstr += t 
  return hexstr.upper() 
 
# 获取文件范例 
def filetype(filename): 
  binfile = open(filename, 'rb') # 必须二制字读取 
  tl = typeList() 
  ftype = 'unknown' 
  for hcode in tl.keys(): 
    numOfBytes = len(hcode) / 2 # 需要读几多字节 
    binfile.seek(0) # 每次读取都要回到文件头,否则会一直往后读取 
    hbytes = struct.unpack_from("B"*numOfBytes, binfile.read(numOfBytes)) # 一个 "B"暗示一个字节 
    f_hcode = bytes2hex(hbytes) 
    if f_hcode == hcode: 
      ftype = tl[hcode] 
      break
  #不要健忘封锁打开的文件,制止呈现异常
  binfile.close() 
  return ftype
 
if __name__ == '__main__': 
  print filetype('pythontab.jpg')

常见文件名目标文件头

文件名目 文件头(十六进制)

JPEG (jpg) FFD8FF

PNG (png) 89504E47

GIF (gif) 47494638

TIFF (tif) 49492A00

Windows Bitmap (bmp) 424D

CAD (dwg) 41433130

Adobe Photoshop (psd) 38425053

Rich Text Format (rtf) 7B5C727466

XML (xml) 3C3F786D6C

HTML (html) 68746D6C3E

Email [thorough only] (eml) 44656C69766572792D646174653A

Outlook Express (dbx) CFAD12FEC5FD746F

Outlook (pst) 2142444E

MS Word/Excel (xls.or.doc) D0CF11E0

MS Access (mdb) 5374616E64617264204A

 

    关键字:

天才代写-代写联系方式