netdzb 当前离线
上尉
infile = open(infilename, 'rb') outfile = open(outfilename, 'wb') while True: buffer = bytearray(infile.read(0x4096)) length = len(buffer) if not buffer: break复制代码