Python 3.2 Tkinter - typed in directory to be source for file copying
问题 I am trying to make a simple tool which will copy/move files with certain extension from one place to another. Everything is working out pretty much fine, but I am trying to make it possible to type in the directory where you want to copy from, and choose the directory where you want to copy to. myGUI=Tk() myGUI.geometry("400x200+100+200") myGUI.title('Copy dat') Source=StringVar() Destination=StringVar() MySource=Entry(myGUI, textvariable=Source).grid(row=9, column=2) MyDestination=Entry