five modes duplication

This commit is contained in:
fangxiaoyu
2023-03-16 22:42:35 +08:00
commit a9f5451c36
34 changed files with 28042 additions and 0 deletions

10
test_3.py Normal file
View File

@@ -0,0 +1,10 @@
# 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)