㈠ 有八個文件夾裡面放著相同名字的文件,如何用python把文件夾里同名稱的數據合
需要大量代碼,代碼可從網路等瀏覽器中搜索到。
利用python把不同文件夾下相同名字的文件合並到一個文件並寫入到新的文件夾,而不同名字的文件直接寫入到新文件夾。
Python編程指的是一種跨平台的計算機程序設計語言,是ABC語言的替代品。Python能提供高效的高級數據結構,還能簡單有效地面向對象編程,是一種面向對象的動態。
㈡ python 如何把多個文件內容合並到以一個文件
Python編程將多個文件合並,代碼如下:
#例子:合並a.txt、b.txt、c.txt合並成d.txt文件
#文件列表,遍於讀取
flist = ['a.txt','b.txt','c.txt']
#要寫入的文件
ofile = open('d.txt', 'w')
#遍歷讀取所有文件,並寫入到輸出文件
for fr in flist:
for txt in open(fr, 'r'):
ofile.write(txt)
ofile.close()
效果如下:
㈢ python中將兩個文件合並
你好:
其實這個問題不是很難啊:
請看代碼:
txtpath1=r"a.txt"
txtpath2=r"b.txt"
txtpath3=r"c.txt"
fpa=open(txtpath1)
fpb=open(txtpath2)
fpc=open(txtpath3,"w")
arrB=[]
forlinebinfpb.readlines():
arrB.append(lineb)
index=0
forlineainfpa.readlines():
index=index+1
fpc.write(linea)
foriinrange((index-1)*10,(index)*10):
try:
fpc.write(arrB[i])
except:
pass
print"Done!"
fpa.close()
fpb.close()
fpc.close()
㈣ Python 合並兩個文件夾
這個用不著python吧,
在windows下直接 X B A /s /e /y
在linux下 cp -r A B
但是還是給你提供python的方法吧
#!/usr/bin/envpython
#-*-coding:utf-8-*-
"""
#------------------------------------------------------------------------
#FileName:[file_dir_.py]
#Purpose:[dirBtoA]
#------------------------------------------------------------------------
"""
#importnecessarymole
importos
importshutil
fromos.pathimportwalk
oj=os.path.join
oif=os.path.isfile
oid=os.path.isdir
PathA="D:\PathA\"
PathB="D:\PathB\"
#============================================================
def(arg,dirname,filenames):
"""
Purpose/Usage:()isafunctocreatedirandfile
fromPathBtoPathAbyrecursion
Parameter(s):@arg,@dirname,@filenames
"""
#forshowingprogress
printdirname
#removerootdir
diretory=dirname.replace(PathB,"")
dirnameA=os.path.join(PathA,diretory)
ifoid(dirnameA):
#ifthereisadirinPathAthencheck
#ifsubdirsandfilesareexisting.
forFILEinfilenames:
ifoif(oj(dirname,FILE))andnotoif(oj(dirnameA,FILE)):
#
shutil.2(oj(dirname,FILE),oj(dirnameA,FILE))
elifoid(oj(dirname,FILE))andnotoid(oj(dirnameA,FILE)):
#
os.system("mkdir%s"%(oj(dirnameA,FILE)))
else:
#ifthereisnosamedir,thencreatethedirinPatchA,
#andfiles
os.system("mkdir%s"%(dirnameA))
forFILEinfilenames:
shutil.2(oj(dirname,FILE),oj(dirnameA,FILE))
#shutil.2funccanwithoriginaldate
#andtimeoffile.
#============================================================
if__name__=="__main__":
walk(PathB,,())
#callfuncrecursively