
Python
grefen
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
windows中notepad++中配置Python运行环境
1 下载Python安装包 2 安装Python 3 环境变量path中添加Python安装目录的路径,我的是c:\Python27 4 notepad++->运行->CCombox编辑框中添加:"cmd /k chdir /d $(CURRENT_DIRECTORY) & echo run python & python $(NAME_PART).py & pause & EXIT原创 2012-07-06 12:43:25 · 6399 阅读 · 0 评论 -
Python中删除特定目录下的文件
widnows中的脚本不好用,所以投向Python,用Python协助工作,很好; import os,sys from stat import * import shutil DelPathName = 'URelease' def walktree(top, callback): for f in os.listdir(top): pathna原创 2012-07-06 12:50:36 · 949 阅读 · 0 评论