67

我正在学习 python (python 3),我可以通过这样做将 1 个文件复制到新目录

import shutil 
shutil.copyfile('C:/test/test.txt', 'C:/lol/test.txt')

我现在要做的是将所有 *.txt 文件从 C:/ 复制到 C:/test

*.txt 是一个通配符,用于搜索我硬盘上的所有文本文件

4

3 回答 3

102
import glob
import shutil
dest_dir = "C:/test"
for file in glob.glob(r'C:/*.txt'):
    print(file)
    shutil.copy(file, dest_dir)
于 2013-08-22T05:08:52.823 回答
12

用于glob.glob()获取匹配文件名的列表,然后遍历该列表。

于 2013-08-22T04:35:23.013 回答
-3

我首先使用 python 2.7 测试以确保它可以工作。我使用通配符 * 因为我将日期添加到所有文本文件中。filename1_2016_04_18.txt 此外,一些文本文件具有不同的最终用户附加到文本文件。文件名2_用户名.txt

import os, glob

directorypath = 'C:\\Program Files\\Common Files'
os.chdir(directorypath)

files = ['filename1', 'filename2', 'filename3']
print ('A %(files)s'% vars())
for filename in files:
    file1 = filename + "*" + "." + "txt"; print ('1 %(file1)s'% vars())
    file2 = ('%(file1)s') % vars (); print ('2 %(file2)s'% vars())
    file3=glob.glob(file2); print ('3 %(file3)s'% vars())
    for filename4 in file3:
        try:
            if os.path.isfile(filename4):
                    print ('I am deleteing this file %(filename4)s'% vars())
                    os.remove(filename4)
            else:    ## Show an error ##
                    print("Error can not delete text file : %s because file not found" % filename4)
        except OSError, e:  ## if failed, report it back to the user ##
                print ("Error: %s - %s." % (e.filename,e.strerror))
于 2016-05-16T20:43:32.583 回答