暂无描述

disk_utils.py 171B

123456789
  1. # -*- coding: utf-8 -*-
  2. from CodeConvert import CodeConvert as cc
  3. def write_to_disk(tmpl, path):
  4. with open(path, 'wb') as f:
  5. f.write(cc.Convert2Utf8(tmpl))