批量该文件名
Posted yang68h
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量该文件名相关的知识,希望对你有一定的参考价值。
#!/usr/bin/python
import os
path1=‘/root/model/‘
file=os.listdir(path1)
num=file.index(‘index.html‘)
del file[num]
c=str(file)
c=c.replace(‘_‘,‘.‘)
c=c.title()
c=c.replace(‘Model.php‘,‘class.php‘)
e=list(eval(c))
b=file
a=dict(zip(b,e))
for key in a.keys():
os.rename(os.path.join(path1,key),os.path.join(path1,a[key]))
以上是关于批量该文件名的主要内容,如果未能解决你的问题,请参考以下文章
在mapper映射文件中批量插入数据的sql语句该怎么写?以及怎样在sql语句中接收list集合参数?