会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
张云贵的博客
我的新博客 ggbstudy.top
Home
Contact
Admin
Subscription
2012年4月27日
批量修改文件名的py脚本
#!/usr/bin/env python# -*- coding: utf-8 -*-import osdef trimfile(dir): for fn in os.listdir(dir): sfile = os.path.join(dir, fn) if os.path.isdir(sfile): trimfile(sfile) continue if '~' in fn: newfile = os.path.join(dir, fn[1:]) ope...
Read More
posted @ 2012-04-27 10:14 张云贵
Views(1248)
Comments(0)
Diggs(0)
Edit