import os
def plpy2to3(rote, py34rote):
os.chdir(rote)
print (os.getcwd())
for i in alistdir(rote):
if i[-3:] =='.py':
os.system('pythonw %s -w %s'%(py34rote, i))
#不在命令窗口输出转化内容,如果要在命令窗口输出的话,把pythonw改为python
print ('pythonw %s -w %s'%(py34rote, i))
def alistdir(sendrote):
'''遍历指定目录下所有文件生成文件和路径'''
listrote=[]
print('列出该系统目录下所有文件夹和文件:')
listrote = []
for root,dirs,files in os.walk(sendrote):
for file in files:
curroot = os.path.join(root,file)
listrote.append(curroot)
return listrote
# 目标目录rote
rote='D:\\软件中心\\ZSI-2.0-rc3'
# 2to3.py
py34rote='D:\\Python34\\Tools\\Scripts\\2to3.py'
plpy2to3(rote, py34rote)
批量转化py2topy3脚本
最新推荐文章于 2024-02-14 08:00:00 发布