MCPcopy Create free account
hub / github.com/Tokeii0/VolatilityPro / select_file

Method select_file

QtGUI_run.py:56–61  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

54
55
56 def select_file(self):
57 #加一个*.*格式
58 file_path, _ = QFileDialog.getOpenFileName(self, "Select File", filter="Memory Dump Files (*.dmp *.iso *.bin *.img *.vmem *.hprof *.core *.elf *.raw)")
59 self.ui.lineEdit.setText(file_path.split('/')[-1])
60 #label 设置
61 self.setWindowTitle('/'.join(file_path.split('/')[0:-1]))
62
63 def profile_to_comboBox(self):
64 with open("profilelist.cfg", "r") as f:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected