看客姥爷自行复制运行,可以使用pyinstaller -F ***.py 生成一个小工具给别人使用。
import os
import shutil
tag = "." + input("请输入后缀格式如(txt) :")
lens = len(tag)
copy_dir = "./copy/"
targetnames = os.listdir()
print(targetnames)
file_list = []
for name in targetnames:
if tag == name[-lens:]:
file_list.append(name)
if file_list != []:
#生成文件夹
if not os.path.exists(copy_dir):
os.makedirs(copy_dir)
for name in file_list:
print(name)
if tag == name[-lens:]:
shutil.copyfile(name, copy_dir + name)
else:
print("没有匹配的后缀文件")