11 lines
206 B
Python
11 lines
206 B
Python
# -*- coding:utf8 -*-
|
|
import os
|
|
|
|
|
|
# 生成路径列表文件
|
|
#
|
|
# os.system("dir /b/s/p/w *.jpg > pos.txt")
|
|
os.system("find " + os.path.abspath(os.curdir) + " -name '*.jpg' > pos.txt")
|
|
|
|
# os.system("pause")
|