11 lines
234 B
Python
11 lines
234 B
Python
|
|
# Name:fang xiaoyu
|
||
|
|
# Time: 2023/3/11 11:31
|
||
|
|
import os
|
||
|
|
import glob
|
||
|
|
|
||
|
|
folder_path = "wcx-抓包-用于模型复现"
|
||
|
|
pcap_files = []
|
||
|
|
for file in glob.glob(os.path.join(folder_path, "*.pcap")):
|
||
|
|
pcap_files.append(file)
|
||
|
|
print(pcap_files)
|