批量重命名文件

Batch renaming files

这是我将文件夹中的文件重命名为连续数字(0、1、2、3 ....)并将它们写入文本文件的示例代码:

import fnmatch
import os

files = os.listdir('.')
text_file = open("out2.txt", "w")               
for i in range(len(files)):
    if fnmatch.fnmatch(files[i], '*.ac3'):
        print files[i]
        os.rename(files[i], str(i) + '.ac3')
        text_file.write(str(i) +'.ac3' +"\n")

如果我有一个包含这些行的文本文件:

1. -c0 -k2 -w1 -x1.0 -y1.0 -ia8.ac3 -opdut_decoded.wav
2. -c0 -k2 -w1 -x1.0 -y1.0 -ia9.ac3 -opdut_decoded.wav
3. -c0 -k2 -w1 -x1.0 -y1.0 -ia18.ac3 -opdut_decoded.wav
4. -c0 -k2  -w1 -x1.0 -y1.0 -iLFE1.ac3 -opdut_decoded.wav

我想在每一行的“-opdut_decoded.wav”之后写上新名字,像这样:

1. -c0 -k2 -w1 -x1.0 -y1.0 -ia8.ac3 -opdut_decoded.wav 0.ac3
2. -c0 -k2 -w1 -x1.0 -y1.0 -ia9.ac3 -opdut_decoded.wav 1.ac3
3. -c0 -k2 -w1 -x1.0 -y1.0 -ia18.ac3 -opdut_decoded.wav 2.ac3
4. -c0 -k2  -w1 -x1.0 -y1.0 -iLFE1.ac3 -opdut_decoded.wav 3.ac3

请举例指导我。

假设输入文件命名为out1.txt,输出文件命名为out2.txt,我相信下面的代码可以帮助你实现你想要的:

import os

file1 = open("out1.txt", "r")
file2 = open("out2.txt", "w")

i = 0
for file in os.listdir('.'):
    if file.endswith('.ac3'):
        print file
        newname = str(i) + '.ac3'
        os.rename(file, newname)
        file2.write(file1.readline().rstrip() + ' ' + newname + '\n')
        i += 1