windows下图片批量移动脚本
#!/usr/bin/env python3# -*- coding:utf-8 -*- import osimport shutilimport statdef file_copy(): with open('list.txt', 'r') as f: for line in f.readlines(): filename = li...