Trying to select a ‘csv’ file as input from a pop-up window in python using PyQt5.
self.ip_info_path = QFileDialog.getExistingDirectory(caption=”Select folder containing IP addr ‘csv’ files”)
The error its throwing each time, which leads to crashing of the software itself is:- Process finished with exit code -1073741819 (0xC0000005)
During debugging, I discovered that the code does not even proceed to line number2 and crashes while the pop-up window is asking option to select an Input File, ie, @ ‘ self_url_file_Path ‘
Please help, as to how to resolve this memory access issue?