0

sampleTextEditorのこの例を使用すると、ブラウジング中に拡張子が付いた任意のファイル()を確認して開くことができます。拡張子のないファイルを開くにはどうすればよいですか?

def defaultFileDialogOptions(self):
    ''' Return a dictionary with file dialog options that can be
        used in both the save file dialog as well as in the open
        file dialog. '''
    return dict(message='Choose a file', defaultDir=self.dirname,
                wildcard='*.*')

def askUserForFilename(self, **dialogOptions):
        dialog = wx.FileDialog(self, **dialogOptions)
        if dialog.ShowModal() == wx.ID_OK:
            userProvidedFilename = True
            self.filename = dialog.GetFilename()
            self.dirname = dialog.GetDirectory()
            self.SetTitle() # Update the window title with the new filename
        else:
            userProvidedFilename = False
        dialog.Destroy()
        return userProvidedFilename
4

1 に答える 1

2

*.*に 変更*

ファイル名全体がワイルドカードの下にあり、ドットは必要ありません

于 2012-08-06T12:36:37.310 に答える