ayantian

Results 2 comments of ayantian

The code provided by the auther: import os import re import struct import shutil def get_files(dname, suffix): pts_list = [] for fname in os.listdir(dname): if fname.endswith(suffix): pts_list += [fname] return...