linux中文件复制的代码实现2.py
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux中文件复制的代码实现2.py相关的知识,希望对你有一定的参考价值。
#文件的复制2.py
def copy(source,destination):#source源文件,destination想复制到的位置
file_read1 = open(source,mode="rb")
file_write1 = open(destination,mode="wb")
while True:
data = file_read1.read(4096)
if len(data) == 0:
break
file_write1.write(data)
file_read1.close()
file_write1.close()
print("完成")
copy("/etc/hostname","/opt/hostname")
接下来试一试效果
[root@node1 day3]# ls /opt/
1.txtx registries.conf
[root@node1 day3]# python3 copy.py
完成
[root@node1 day3]# ls /opt/
1.txtx hostname registries.conf
[root@node1 day3]# cat /opt/hostname
node1
以上是关于linux中文件复制的代码实现2.py的主要内容,如果未能解决你的问题,请参考以下文章