This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
grityu-model-duplication/test_3.py

11 lines
234 B
Python
Raw Normal View History

2023-03-16 22:42:35 +08:00
# 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)