繁体   English   中英

将目录中的所有文件复制到新目录中,同时在 Python 中重命名同名文件

[英]Copy all files within directory into new directory while renaming files with same name in Python

我正在尝试将源目录中的每个 csv 文件及其子文件夹复制到一个新的“mega”文件夹中。 最终结果将是一个文件夹,除了在源目录中找到的 csv 文件外,什么都不包含。

我面临的问题是某些 csv 文件名是相同的。 因此,在复制文件时,会覆盖具有相同名称的文件。 我希望能够重命名它们,而不是覆盖它们。 我想重命名文件的格式示例是:

  • A B C D
  • abcd_1
  • abcd_2 等...

我找到了这个线程,但答案对我不起作用。

我的代码如下(基于提供的链接):

movdir = r"Source Directory"
basedir = r"Destination Folder"
# Walk through all files in the directory that contains the files to copy
for root, dirs, files in os.walk(movdir):
    for filename in files:
        # I use absolute path, case you want to move several dirs.
        old_name = os.path.join(os.path.abspath(root), filename)

        # Separate base from extension
        base, extension = os.path.splitext(filename)

        # Initial new name
        new_name = os.path.join(basedir, base, filename)

        # If folder basedir/base does not exist... You don't want to create it?
        if not os.path.exists(os.path.join(basedir, base)):
            print(os.path.join(basedir,base), "not found") 
            continue    # Next filename
        elif not os.path.exists(new_name):  # folder exists, file does not
            shutil.copy(old_name, new_name)
        else:  # folder exists, file exists as well
            ii = 1
            while True:
                new_name = os.path.join(basedir,base, base + "_" + str(ii) + extension)
                if not os.path.exists(new_name):
                   shutil.copy(old_name, new_name)
                   print("Copied", old_name, "as", new_name)
                   break 
                ii += 1

当我运行此代码时,它只是打印“未找到”源目录中的每个 csv 文件,并且根本没有复制任何文件。

任何有关这方面的帮助或信息将不胜感激。

尝试以下修改:

movedir = r"source"
basedir = r"destination"
# Walk through all files in the directory that contains the files to copy
for root, dirs, files in os.walk(movdir):
    for filename in files:
        # I use absolute path, case you want to move several dirs.
        old_name = os.path.join(os.path.abspath(root), filename)

        file_path,file_bare_name = os.path.split(filename) # this is were ur code didn't work as u use base as the bare file name and the relative path to source ambiguously.
        base, extension = os.path.splitext(file_bare_name)
        file_relative_path_to_source = root[len(movedir)+1:] #removing the old dir name from the relative path 
        
        if extension=='.csv': # taking only csv files
            # Initial new name
            new_name = os.path.join(basedir, file_bare_name)
            if not os.path.exists(new_name):  # file dosn't exist
                shutil.copy(old_name, new_name)
            else:  # copies being renamed
                ii = 1
                while True:
                    new_name = os.path.join(basedir, file_bare_name + "_" + str(ii) + extension)
                    if not os.path.exists(new_name):
                        shutil.copy(old_name, new_name)
                        print("Copied", old_name, "as", new_name)
                        break 
                    ii += 1

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM