Pythonは再帰的にファイルのコピーを実現する方法を利用します。
以下の通りです
import os
import time
from collections import deque
"""
@para sourcePath:
@para targetPath:
"""
def getDirAndCopyFile(sourcePath,targetPath):
if not os.path.exists(sourcePath):
return
if not os.path.exists(targetPath):
os.makedirs(targetPath)
#
for fileName in os.listdir(sourcePath):
#
absourcePath = os.path.join(sourcePath, fileName)
#
abstargetPath = os.path.join(targetPath, fileName)
#
if os.path.isdir(absourcePath):
#
os.makedirs(abstargetPath)
# getDirAndCopyFile()
getDirAndCopyFile(absourcePath,abstargetPath)
#
if os.path.isfile(absourcePath):
rbf = open(absourcePath,"rb")
wbf = open(abstargetPath,"wb")
while True:
content = rbf.readline(1024*1024)
if len(content)==0:
break
wbf.write(content)
wbf.flush()
rbf.close()
wbf.close()
if __name__ == '__main__':
startTime = time.clock()
sourcePath = r"H:\ "
targetPath = r"H:\ _ "
getDirAndCopyFile(sourcePath,targetPath)
#
endTime = time.clock()
time_mi = endTime // 60
time_s = endTime // 1 % 60
time_ms = ((endTime * 100) // 1) % 100
print(" :%02.0f:%02.0f:%2.0f" % (time_mi, time_s, time_ms))
以上のPythonは再帰的にファイルのコピーを実現する方法を利用して、小編集で皆さんのすべての内容を共有しています。参考にしていただければと思います。どうぞよろしくお願いします。