Python-134 将指定文件路径下的某类文件移动到新的路径下
- 只需要改动文件原始和新的路径即可:是将文件末尾是'.faa'的文件进行移动!
import shutil,os,re
old_path='H:\\美格基因组数据—全部'
new_path='G:\\Lachnospiraceaea_DataSet\\Proteinfaa_FilesNew'
for derName, subfolders, filenames in os.walk(old_path):
for i in range(len(filenames)):
if filenames[i].endswith('.faa'):
file_path=derName+'\\'+filenames[i]
newpath=new_path+'\\'+filenames[i]
shutil.copy(file_path,newpath)
print('Moving is finished!')
image.png
本文标题:Python-134 将指定文件路径下的某类文件移动到新的路径下
本文链接:https://www.haomeiwen.com/subject/mkhtfrtx.html
网友评论