You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
265 B
9 lines
265 B
|
17 hours ago
|
import os
|
||
|
|
|
||
|
|
d = r'.scratch\opportunity-bugfix\lanhu-pages'
|
||
|
|
names = sorted(f for f in os.listdir(d) if f.startswith('A7-3'))
|
||
|
|
out = r'.scratch\a7-parity\a73-files.txt'
|
||
|
|
with open(out, 'w', encoding='utf-8') as fh:
|
||
|
|
fh.write('\n'.join(names))
|
||
|
|
print('OK', len(names))
|