web-dev-qa-db-ja.com

Pythonファイルを新しいディレクトリにコピーし、ファイル名が既に存在する場合は名前を変更します

私はすでに このスレッド を読んでいますが、コードに実装すると、数回の反復でしか機能しません。

私はpythonを使用してディレクトリを反復し(移動ディレクトリと呼びます)、主にpdfファイル(一意のIDに一致)を別のディレクトリ(ベースディレクトリ)に一致するフォルダにコピーします対応する一意のID)。shutil.copyしかし、重複がある場合、既存のファイルを上書きします。

対応するフォルダーを検索して、ファイルが既に存在するかどうかを確認し、複数のファイルがある場合は繰り返し名前を付けたいと思います。

例えば.

  • ファイル1234.pdfをベースディレクトリ1234のフォルダーにコピーします。
  • 1234_1.pdfという名前の1234.pdfが存在する場合、
  • 別のpdfが1234.pdfとしてコピーされる場合、それは1234_2.pdfになります。

ここに私のコードがあります:

import arcpy
import os
import re
import sys
import traceback
import collections
import shutil

movdir = r"C:\Scans"
basedir = r"C:\Links"

try:
    #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:
            #find the name location and name of files
            path = os.path.join(root, filename)
            print path
            #file name and extension
            ARN, extension = os.path.splitext(filename)
            print ARN

            #Location of the corresponding folder in the new directory
            link = os.path.join(basedir,ARN)

            # if the folder already exists in new directory
            if os.path.exists(link):

                #this is the file location in the new directory
                file = os.path.join(basedir, ARN, ARN)
                linkfn = os.path.join(basedir, ARN, filename)

                if os.path.exists(linkfn):
                    i = 0
                    #if this file already exists in the folder
                    print "Path exists already"
                    while os.path.exists(file + "_" + str(i) + extension):
                        i+=1
                    print "Already 2x exists..."
                    print "Renaming"
                    shutil.copy(path, file + "_" + str(i) + extension)
                else:

                    shutil.copy(path, link)
                    print ARN + " " +  "Copied"
            else:
                print ARN + " " + "Not Found"
28
GISKid

時々、最初からやり直す方が簡単な場合があります...タイプミスがある場合は謝罪しますが、徹底的にテストする時間はありませんでした。

movdir = r"C:\Scans"
basedir = r"C:\Links"
# 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 os.path.exists(newname):
                   shutil.copy(old_name, new_name)
                   print "Copied", old_name, "as", new_name
                   break 
                ii += 1
22
Jblasco

私は常にタイムスタンプを使用します-そのため、ファイルがすでに存在することは不可能です:

import os
import shutil
import datetime

now = str(datetime.datetime.now())[:19]
now = now.replace(":","_")

src_dir="C:\\Users\\Asus\\Desktop\\Versand Verwaltung\\Versand.xlsx"
dst_dir="C:\\Users\\Asus\\Desktop\\Versand Verwaltung\\Versand_"+str(now)+".xlsx"
shutil.copy(src_dir,dst_dir)
13
user8924811

少なくともここに書いたように、インデントの問題があると思います。

while not os.path.exists(file + "_" + str(i) + extension):
   i+=1
   print "Already 2x exists..."
   print "Renaming"
   shutil.copy(path, file + "_" + str(i) + extension)

する必要があります:

while os.path.exists(file + "_" + str(i) + extension):
    i+=1
print "Already 2x exists..."
print "Renaming"
shutil.copy(path, file + "_" + str(i) + extension)

これをチェックしてください!

2
Jblasco