本帖最后由 ivor 于 2016-2-22 10:43 编辑
- #!/usr/bin/env python
- # Python 3.5.1
- # coding:utf-8
- import os, re
-
- if not os.path.exists("zuk手机"):
- os.mkdir("zuk手机")
- for file in os.listdir("."):
- if file.endswith(".jpg") | file.endswith(".mp4"):
- if file.startswith("IMG") | file.startswith("VID") | file.startswith("Screenshot"):
- os.rename(file, "zuk手机//%s" % file)
复制代码
|