Skip to content
  • [SOLVED] .getSaveFileName doesn't work in Qgis

    Unsolved General and Desktop qgis getsavefilename
    3
    0 Votes
    3 Posts
    2k Views
    Agat BA
    @asanka424 Thanks a lot! Your suggestion works. After moving the connect line into the constructor, I also needed to change this: filename = QFileDialog.getSaveFileName(self, "Select output file ","", '*.txt') to this: filename = QFileDialog.getSaveFileName(None, "Select output file ","", '*.txt')