zoukankan      html  css  js  c++  java
  • Python批量修改文件后缀脚本

    批量修改文件后缀名:

    使用方法:s_rename(路径,原后缀,新后缀)

    #coding:gbk #code By Neeao #2009-09-15 import os,string   def s_rename(path,old_ext,new_ext):     for (path, dirs, files) in os.walk(path):         for filename in files:             ext=os.path.splitext(filename)[1]             if (cmp(ext,old_ext)==0):                 newname=filename.replace(old_ext,new_ext)                 oldpath=path+"\\"+filename                 newpath=path+"\\"+newname                 print "oldpath:"+oldpath+""                 print "newpth:"+newpath+""                 try:                     os.rename(oldpath, newpath)                 except ValueError:                     print "Error when rename the file " + oldpath                 except NameError:                     print "Error when rename the file " + oldpath                 except OSError:                     #print OSError                     print newpath + " The file is already exist!" if __name__ == '__main__':     s_rename("F:\\code",".ph",".pl")     #print "test"
    本文转自: 黑客武林(www.hack50.com) 详细出处参考:http://www.hack50.com/stu/sort094/sort0108/18715.html

  • 相关阅读:
    js 报Unexpected token }
    c# 预览服务器文件
    js下载文件并修改文件名称
    js 自定义右键
    js 加载图片
    随笔1
    随笔
    php curl 发送post请求带参数
    laravel 数据库事务
    an't connect to local MySQL server through socket '/tmp/mysql.sock'
  • 原文地址:https://www.cnblogs.com/gisoracle/p/1888281.html
Copyright © 2011-2022 走看看