python--base64


import base64
import os


# base64,参数为文件路径名
def file_base64(filepath):
if os.path.isfile(filepath):
with open(filepath, 'rb') as file:
file_base64_str = base64.b64encode(file.read())
return file_base64_str
else:
return None

posted on 2018-02-04 16:28  我要的明天  阅读(210)  评论(0编辑  收藏  举报

导航