文件复制_bytes
Posted wang-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件复制_bytes相关的知识,希望对你有一定的参考价值。
f1 = open("c:/huyifei.jpg", mode="rb") f2 = open("d:/huerfei.jpg", mode="wb") for line in f1: # line是从f1中读取的内容 f2.write(line) # 把读取的内容原封不动的写出去 f1.close() f2.flush() f2.close()
以上是关于文件复制_bytes的主要内容,如果未能解决你的问题,请参考以下文章
ElasticSearch学习问题记录——Invalid shift value in prefixCoded bytes (is encoded value really an INT?)(代码片段