我无法使用pyshark
import pyshark
def sort_datafile(pcap):
cap=pyshark.FileCapture(pcap, only_summaries=True)
print cap[0]
sort_datafile('cap_file.pcap')
它扔了:
WindowsError: [Error 123] The filename, directory name, or volume label syntax is incorrect.
使用文件上的open()
函数(此文件已存在)没有问题。