filedialoge
module and the askopenfilename function.Tkinter uses the
filedialoge
access the askopenfilename to open a window that matches the format of your operating system. Mine is currently Windows 8, so it looks like this.How good does that look. To use the askopenfilename function you need to import it:
from tkinter.filedialog import askopenfilenameBecause you will probably want to run the file from a command in a menu bar of from a button click it's probably a good idea to wrap it in a function:
The askopenfilename function can have a number of options or no options and you can leave it blank. The ones I have used in this example I think are the most useful:def OpenFile():name = askopenfilename(initialdir="C:/Users/Batman/tkinter/",filetypes =(("Text File", "*.txt"),("All Files","*.*")),title = "Choose a file.")
initialdir
set the the initial file location that the function will open it.filetypes
This allows you set the type of files you want the user open. The end result appears in the bottom drop down menu.
First you set the file in a tuple ("Text File", "*.txt"). The first input is the title you want to name the file type(e.g. "Text File") and the second string is the file name ("*.txt"). If you have a custom file type, like ("*.noob"), then you can use that too.
What I discovered is that it requires a minimum of two file types for this option to work. So if you get an error this might be it.
title
This is the title you want to add to the top bar.
askopenfilename
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! Python 3.4 | |
""" | |
Open a file dialog window in tkinter using the filedialog method. | |
Tkinter has a prebuilt dialog window to access files. | |
This example is designed to show how you might use a file dialog askopenfilename | |
and use it in a program. | |
""" | |
from tkinter import * | |
from tkinter import ttk | |
from tkinter.filedialog import askopenfilename | |
root = Tk( ) | |
#This is where we lauch the file manager bar. | |
def OpenFile(): | |
name = askopenfilename(initialdir="C:/Users/Batman/Documents/Programming/tkinter/", | |
filetypes =(("Text File", "*.txt"),("All Files","*.*")), | |
title = "Choose a file." | |
) | |
print (name) | |
#Using try in case user types in unknown file or closes without choosing a file. | |
try: | |
with open(name,'r') as UseFile: | |
print(UseFile.read()) | |
except: | |
print("No file exists") | |
Title = root.title( "File Opener") | |
label = ttk.Label(root, text ="I'm BATMAN!!!",foreground="red",font=("Helvetica", 16)) | |
label.pack() | |
#Menu Bar | |
menu = Menu(root) | |
root.config(menu=menu) | |
file = Menu(menu) | |
file.add_command(label = 'Open', command = OpenFile) | |
file.add_command(label = 'Exit', command = lambda:exit()) | |
menu.add_cascade(label = 'File', menu = file) | |
root.mainloop() | |
''' | |
RESULTS: | |
>>> | |
C:/Users/Scott/Documents/Programming/json/test.txt | |
"I like to move it, groove it!" | |
''' | |
Useful Links:
http://effbot.org/tkinterbook/tkinter-file-dialogs.htm
http://tkinter.unpythonic.net/wiki/tkFileDialog
thank you bro
ReplyDelete