美文网首页
Python使用Magic库识别文件类型

Python使用Magic库识别文件类型

作者: FelicityChou | 来源:发表于2017-01-12 15:49 被阅读0次

    使用Python库:http://github.com/ahupp/python-magic

    安装:
    pip install python-magic

    1. 识别单个文件
    import magic
    
    file_path = "文件路径"
    M = magic.Magic(magic_file="magic.mgc")
    file_type = M.from_file(file_path)
    

    相关文章

      网友评论

          本文标题:Python使用Magic库识别文件类型

          本文链接:https://www.haomeiwen.com/subject/keodbttx.html