#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import os.path
import re
def moveFile(infile, outfile):
inBuffer = ""
with open(infile, "rb+") as fr:
inBuffer = fr.read()
with open(outfile, "wb+") as fw:
fw.write(inBuffer)
# 压缩
def zipFile(infile, outfile):
inBuffer = ''
outBuffer = ''
with open(infile, 'rb+'
python27压缩 json
于 2022-11-18 21:37:25 首次发布