import wx ############################################################################### # twin_file_wx.py # @title: Selecteur de fichier (wxPython) # @project: Blender-EduTech # @lang: fr # @authors: Philippe Roy # @copyright: Copyright (C) 2023 Philippe Roy # @license: GNU GPL ############################################################################### app = wx.App() frame = wx.Frame(None, -1, 'win.py') # frame.SetDimensions(0,0,200,50) openFileDialog = wx.FileDialog(frame, "Sélection du fichier de commande", "", "", "Fichier Python (*.py)|*.py", wx.FD_OPEN | wx.FD_FILE_MUST_EXIST) openFileDialog.ShowModal() print(openFileDialog.GetPath()) openFileDialog.Destroy()