我想编辑文件夹列表中几个文件的文件名并将整个文件导出到新文件夹。虽然我可以重命名文件,但文件的内容并没有迁移过来。我想我编写代码只是为了创建一个新的空文件,而不是编辑旧文件并将其移至新目录。我觉得修复应该很容易,而且我遗漏了几行重要的代码。以下是我到目前为止的内容:
导入库
import os
import glob
import re
目录
directory = glob.glob('Z:/Stuff/J/extractions/test/*.fsa')
目录下的两个文件打印出来是这样的
Z:/Stuff/J/extractions/test\c2_D10.fsa
Z:/Stuff/J/extractions/test\c3_E10.fsa
for fn in directory:
print fn
此脚本旨在操纵文件名并将操纵的文件导出到另一个文件夹
for fn in directory:
output_directory = 'Z:/Stuff/J/extractions/test2'
value = os.path.splitext(os.path.basename(fn))[0]
matchObj = re.match('(.*)_(.*)', value, re.M|re.I)
new_fn = fn.replace(str(matchObj.group(0)), str(matchObj.group(2)) + "_" + str(matchObj.group(1)))
base = os.path.basename(new_fn)
v = open(os.path.join(output_directory, base), 'wb')
v.close()
我的最终结果如下:
Z:/Stuff/J/extractions/test2\D10_c2.fsa
Z:/Stuff/J/extractions/test2\E10_c3.fsa
但就像我说的输出目录中的文件是空的(0 kb)