9 lines
123 B
Python
9 lines
123 B
Python
# -*- coding:utf8 -*-
|
|
import os
|
|
|
|
|
|
# 生成路径列表文件
|
|
os.system("dir /b/s/p/w *.jpg > neg.txt")
|
|
|
|
|
|
os.system("pause") |