ventanas txt guardar gestion explorador datos con carpeta binarios archivos abrir python drag-and-drop wxpython filepath wx

gestion - guardar datos en txt python



wxPython: Arrastrando un archivo en la ventana para obtener la ruta del archivo (1)

Quiero arrastrar un archivo a una ventana y obtener la ruta del archivo. He intentado hacer esto:

class CSVDropper(wx.FileDropTarget): def __init__(self, data): wx.FileDropTarget.__init__(self) self.data = data def OnDropFiles(self, x, y, filenames): self.data = filenames print self.data

luego en la ventana principal:

# Drag & Drop self.csv_path = None self.drop_table = CSVDropper(self.csv_path) self.SetDropTarget(self.drop_table)

Pero esto no hace nada. Intenté ejecutar este código de tutorial, pero tampoco funciona. ¿Cómo logro esto?


Cuando imprima self.data , debería ver una lista de rutas impresas. De todos modos, escribí un tutorial sobre drag-n-drop hace un tiempo que muestra cómo hacerlo. Aquí hay una versión ligeramente modificada de mi código que imprime las rutas de los archivos a stdout y a un control de texto también:

import wx ######################################################################## class MyFileDropTarget(wx.FileDropTarget): """""" #---------------------------------------------------------------------- def __init__(self, window): """Constructor""" wx.FileDropTarget.__init__(self) self.window = window #---------------------------------------------------------------------- def OnDropFiles(self, x, y, filenames): """ When files are dropped, write where they were dropped and then the file paths themselves """ self.window.SetInsertionPointEnd() self.window.updateText("/n%d file(s) dropped at %d,%d:/n" % (len(filenames), x, y)) print filenames for filepath in filenames: self.window.updateText(filepath + ''/n'') ######################################################################## class DnDPanel(wx.Panel): """""" #---------------------------------------------------------------------- def __init__(self, parent): """Constructor""" wx.Panel.__init__(self, parent=parent) file_drop_target = MyFileDropTarget(self) lbl = wx.StaticText(self, label="Drag some files here:") self.fileTextCtrl = wx.TextCtrl(self, style=wx.TE_MULTILINE|wx.HSCROLL|wx.TE_READONLY) self.fileTextCtrl.SetDropTarget(file_drop_target) sizer = wx.BoxSizer(wx.VERTICAL) sizer.Add(lbl, 0, wx.ALL, 5) sizer.Add(self.fileTextCtrl, 1, wx.EXPAND|wx.ALL, 5) self.SetSizer(sizer) #---------------------------------------------------------------------- def SetInsertionPointEnd(self): """ Put insertion point at end of text control to prevent overwriting """ self.fileTextCtrl.SetInsertionPointEnd() #---------------------------------------------------------------------- def updateText(self, text): """ Write text to the text control """ self.fileTextCtrl.WriteText(text) ######################################################################## class DnDFrame(wx.Frame): """""" #---------------------------------------------------------------------- def __init__(self): """Constructor""" wx.Frame.__init__(self, parent=None, title="DnD Tutorial") panel = DnDPanel(self) self.Show() #---------------------------------------------------------------------- if __name__ == "__main__": app = wx.App(False) frame = DnDFrame() app.MainLoop()