PyQt5 QFileDialog is not returning correct paths in ubuntu
问题 I'm using this bit of code to open a file dialog and return the selected file names (PyQt5, Ubuntu) QtWidgets.QFileDialog.getOpenFileNames(self, 'Open files', self.__target, self.__open_f) But instead of getting this list: ['/home/python/Downloads/addresses.csv', '/home/python/Downloads/airtravel.csv'] I am getting this list: ['/run/user/1000/doc/9f194012/addresses.csv', '/run/user/1000/doc/885466d0/airtravel.csv'] here is my code: import os import sys from mods import fixqt from PyQt5 import