def _get_output_filename(self, title='Select Output File'):
root, _, asksaveasfilename = self._setup_tkinter()
# show an "Open" dialog box and return the path to the selected file
output_file = asksaveasfilename(title=title)
root.destroy() # Destroy the GUI
return output_file
评论列表
文章目录