python復制文件中內(nèi)容的方法:
1、使用shutil.copyfile(file1,file2)方法復制
file1為需要復制的源文件的文件路徑,file2為目標文件的文件路徑+文件名.
如下:將c盤中A文件夾下的0.png復制到D盤中B文件夾下并重命名為1.png.
src_file='C:\\A\\0.png'
dst_file='D:\\B\\1.png'
shutil.copyfile(src_file,dst_file)
2、使用.shutil.copy(文件1,文件2)方法復制
defcopy(src,dst):
"""copydataandmodebits("cpsrcdst")
Thedestinationmaybeadirectory.
"""
ifos.path.isdir(dst):
dst=os.path.join(dst,os.path.basename(src))
copyfile(src,dst)
copymode(src,dst)
3、shutil.copyfileobj(文件1,文件2):將文件1的數(shù)據(jù)覆蓋copy給文件2。
importshutil
f1=open("1.txt",encoding="utf-8")
f2=open("2.txt","w",encoding="utf-8")
shutil.copyfileobj(f1,f2)
以上內(nèi)容為大家介紹了Python如何復制文件中的內(nèi)容,希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。