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的主要内容,如果未能解决你的问题,请参考以下文章

linux中python程序复制文件的代码实现

linux上文件复制的python代码实现3.py

怎么才能把windows里的文件复制到虚拟机的linux中去

如何从python中的其他目录导入模块? [复制]

linux下用c语言写出复制黏贴文件

Linux下编写一脚本,实现本目录下文件的批量复制。