将同一目录中具有相同扩展名的文件复制到另一个目录 - Python

时间:2017-10-02 13:39:48

标签: python directory copy

我在同一目录中有一些文件具有相同的扩展名(.html)。这些文件需要全部复制到另一个目录。我已在shutilos查找了文档,但无法找到正确的答案......

我有一些伪代码如下:

import os, shutil

copy file1, file2, file3 in C:\abc
to C:\def

如果有人知道如何解决这个问题,请告诉我。理解!!

3 个答案:

答案 0 :(得分:0)

前段时间我创建了这个脚本来排序文件夹中的文件。试试吧。

import glob
import os

#get list of file 
orig = glob.glob("G:\\RECOVER\\*")

dest = "G:\\RECOVER_SORTED\\"

count = 0

#recursive function through all the nested folders
def smista(orig,dest):
    for f in orig:
            #split filename at the last point and take the extension
            if f.rfind('.') == -1:
                #in this case the file is a folder
                smista(glob.glob(f+"\\*"),dest)
            else:
                #get extension
                ext = f[f.rfind('.')+1:]

                #if the folder does not exist create it
                if not os.path.isdir(dest+ext):
                    os.makedirs(dest+ext)
                global count
                os.rename(f,dest+ext+"\\"+str(count)+"."+ext)
                count = count+1
#if the destination path does not exist create it            
if not os.path.isdir(dest):
            os.makedirs(dest)

smista(orig,dest)
input("press close to exit")

答案 1 :(得分:0)

[假设python3,但应该在2.7中相似]

您可以使用os中的listdir和shutil中的copy

import os, shutil, os.path

for f in listdir("/path/to/source/dir"):
    if os.path.splitext(f)[1] == "html":
        shutil.copy(f, "/path/to/target/dir")

警告:这是在没有测试的情况下一起报废的。更正欢迎

编辑(因为我无法评论): @ ryan9025 splitext来自os.path,我的不好。

答案 2 :(得分:0)

我最终得到了一个正确的答案,结合了所有回复。

因此,如果我在(a)目录中有一个python脚本,则(b)目录中的所有源文件和目标位于(c)目录中。

以下是应该正常运行的代码,它看起来也很整洁。

import os
import shutil
import glob

src = r"C:/abc"
dest = r"C:/def"

os.chdir(src)
for files in glob.glob("*.html"):
        shutil.copy(files, dest)