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.
|
'''
|
|
Author: SJ2050
|
|
Date: 2021-10-16 21:33:05
|
|
LastEditTime: 2021-10-16 23:25:11
|
|
Version: v0.0.1
|
|
Description: Solution for homework9.
|
|
Copyright © 2021 SJ2050
|
|
'''
|
|
from pathlib import Path
|
|
|
|
if __name__ == '__main__':
|
|
dir_path = './test/'
|
|
print(sorted(Path('.').glob('**/*.dll')))
|