如果目标文件夹中已存在文件,如何替换文件?

时间:2017-11-13 08:18:17

标签: python file python-3.6

我只是想将文件从一个文件夹移动到另一个文件夹(已经知道如何操作),并在此过程中检查目标文件夹中的所有文件并删除具有相同名称的文件。

我有两个文件夹/ src和/ dst。

在文件夹/ src中我有:

  
      
  • ' access.log.1.txt'
  •   

并在文件夹/ dst中:

  
      
  • ' access.log.1.20171110_115840565311.txt'
  •   
  • ' access.log.1.20171110_115940565311.txt'
  •   
  • ' access.log.2.20171110_115940565311.txt'
  •   

当我将/ src中的文件移动到/ dst时,我想删除/ src中名为文件的所有文件,不包括/ dst文件中的datetime()扩展名。

所以/ dst文件夹在执行后应如下所示:

  
      
  • ' access.log.1.txt'
  •   
  • ' access.log.2.20171110_115940565311.txt'
  •   

这是我必须将文件从/ src移动到/ dst:

的代码
entrada = ENTRADA   #This 3 are the paths to the folders  /src
salida = SALIDA     #                                     /dst
error=ERROR         #                                     /err
files=glob.glob(entrada)
for file in files:
   fichero=open(file,encoding='utf-8')
   try:
       for line in fichero:
          la=line.replace("-","")
          li=la.replace('”'+chr(10),'')
          li=li.split('"')
          line_DB(li)
       fichero.close()
       if TIME_RENAME=='True':
          execution=str(datetime.now())
          execution=execution.replace('.','')
          execution=execution.replace('-','')
          execution=execution.replace(' ','_')
          execution_time=execution.replace(':','')
          base = os.path.splitext(file)[0]
          base=base+'.'+execution_time+'.txt'
          os.rename(file,base)
          file=base
       else:
          print('Hello')
          #This is where I need the code

       shutil.move(file, salida)
       con.commit()
   except:
       logging.error(sys.exc_info())
       print(sys.exc_info())
       fichero.close()
       shutil.move(file, error)

有人可以帮助我吗?

谢谢!

2 个答案:

答案 0 :(得分:1)

Sandip的回答应该有效,但是如果你按照你在问题中所说的方式特别想要的话,这可能会有效:

import os

src_filename = "access.log.1.txt"
dst_dir = "test"

for filename in os.listdir(dst_dir):

    # Filter files based on number of . in filename
    if filename.count(".") < 4:
        continue

    # We need to remove the datetime extension before comparing with our filename
    filename_tokens = filename.split(".")  # List of words separated by . in the filename
    print "Tokens:", filename_tokens

    # Keep only indexes 0, 1, 2 and 4 (exclude index 3, which is the datetime-string)
    datetime_string = filename_tokens.pop(3)  # pop() also removes the datetime-string
    print "Datetime:", datetime_string
    dst_filename = ".".join(filename_tokens)
    print "Destination filename:", dst_filename

    # Check if the destination filename now matches our source filename
    if dst_filename == src_filename:
        # Get full path of file to be deleted
        filepath = os.path.join(dst_dir, filename)
        # Delete it
        print "Deleting:", filepath
        os.remove(filepath)
    print "----------------------"

请注意,此方法假设您的所有目标文件名都与您的问题相同,即所有目标文件名都有4个句点(.)且日期时间字符串始终位于第三个和第四个句点之间

答案 1 :(得分:0)

使用匹配的正则表达式删除所有文件。 只需导航到目标文件夹并使用正则表达式删除所有文件 在你的情况下使用

rm access.log.1.[0-9,_]*.txt

删除名为access.log.1..txt的所有文件 现在,您可以使用

复制文件
cp filename.txt /dst/filename.txt