tkinter中添加文本框和按钮,当点击按钮时文本框选择一个文件夹路径
时间: 2024-04-30 18:21:47 浏览: 262
可以使用`tkinter.filedialog`模块中的`askdirectory()`函数来让用户选择一个文件夹路径,并将选择的路径显示在文本框中。以下是一个示例代码:
```python
import tkinter as tk
from tkinter import filedialog
def select_folder():
folder_path = filedialog.askdirectory()
entry_path.delete(0, tk.END) # 清空文本框
entry_path.insert(0, folder_path) # 在文本框中显示选择的路径
root = tk.Tk()
label_path = tk.Label(root, text="文件夹路径:")
label_path.pack()
entry_path = tk.Entry(root)
entry_path.pack()
button_select = tk.Button(root, text="选择文件夹", command=select_folder)
button_select.pack()
root.mainloop()
```
运行这段代码后,会显示一个窗口,包含一个标签、一个文本框和一个按钮。当点击按钮时,会弹出一个对话框,让用户选择一个文件夹路径,并将选择的路径显示在文本框中。
相关问题
使用 Python 3 和 tkinter 写一个批量修改文件夹下照片名的程序,文件夹下的所有照片名的前20位等于父级文件夹名,图形界面有文本框、选择文件按钮、修改照片名按钮、执行完成文本框,当点击选择文件夹路径时,文本框中显示文件夹路径,当点击修改按钮时,修改照片名,当修改照片名完成后,第二给文本框中显示执行完成。
好的,以下是一个简单的实现,你可以参考一下:
```
import os
import tkinter as tk
from tkinter import filedialog
class BatchRename:
def __init__(self, root):
self.root = root
self.root.title("Batch Rename")
self.root.geometry("400x200")
self.folder_path = tk.StringVar()
self.status = tk.StringVar()
self.create_widgets()
def create_widgets(self):
# 文件夹路径
folder_path_label = tk.Label(self.root, text="文件夹路径:")
folder_path_label.grid(row=0, column=0)
folder_path_entry = tk.Entry(self.root, textvariable=self.folder_path, width=30)
folder_path_entry.grid(row=0, column=1)
folder_path_button = tk.Button(self.root, text="选择文件夹", command=self.select_folder)
folder_path_button.grid(row=0, column=2)
# 修改按钮
rename_button = tk.Button(self.root, text="修改照片名", command=self.rename_photos)
rename_button.grid(row=1, column=1)
# 执行状态
status_label = tk.Label(self.root, textvariable=self.status)
status_label.grid(row=2, column=1)
def select_folder(self):
folder_selected = filedialog.askdirectory()
self.folder_path.set(folder_selected)
def rename_photos(self):
folder_path = self.folder_path.get()
if not folder_path:
self.status.set("请先选择文件夹!")
return
for filename in os.listdir(folder_path):
if filename.endswith(".jpg") or filename.endswith(".png"):
old_path = os.path.join(folder_path, filename)
prefix = os.path.basename(folder_path)[:20] # 获取父级文件夹名前20位
new_filename = prefix + "_" + filename
new_path = os.path.join(folder_path, new_filename)
os.rename(old_path, new_path)
self.status.set("执行完成!")
if __name__ == '__main__':
root = tk.Tk()
BatchRename(root)
root.mainloop()
```
这个程序使用了 Python 的 `os` 模块来进行文件操作,使用了 tkinter 模块来创建图形界面。程序中的 `BatchRename` 类实现了图形界面的各个组件以及文件操作的逻辑。在 `rename_photos` 方法中,我们使用了 `os.listdir` 方法列出文件夹下的所有文件,然后对于以 `.jpg` 或 `.png` 结尾的文件进行重命名操作,重命名后的文件名为父级文件夹名的前20位加上下划线再加上原文件名。
6,使用 Python 3 和 tkinter 写一个pdf转ppt的程序,有一个文本框2个按钮,点击第一个按钮选择pdf文件并存入文本框中,点击第二个按钮转换文件,文件转换成功后保存到当前文件夹
以下是使用 Python 3 和 tkinter 编写的 pdf 转 ppt 程序:
```python
import tkinter as tk
from tkinter import filedialog
import os
import comtypes.client
def select_file():
filepath = filedialog.askopenfilename(initialdir=os.getcwd(), title="Select file", filetypes=[("PDF files", "*.pdf")])
if filepath:
file_path_entry.delete(0, tk.END)
file_path_entry.insert(0, filepath)
def convert_file():
filepath = file_path_entry.get()
if filepath:
powerpoint = comtypes.client.CreateObject("Powerpoint.Application")
powerpoint.Visible = 1
output_folder_path = os.path.dirname(filepath)
output_filename = os.path.splitext(os.path.basename(filepath))[0] + ".pptx"
output_filepath = os.path.join(output_folder_path, output_filename)
deck = powerpoint.Presentations.Add()
deck.SaveAs(output_filepath, 24) # 24 is the pptx file format code
deck.Close()
powerpoint.Quit()
result_label.config(text="File converted successfully!")
else:
result_label.config(text="Please select a file first.")
window = tk.Tk()
window.title("PDF to PPT Converter")
file_path_label = tk.Label(text="PDF File:")
file_path_label.grid(column=0, row=0)
file_path_entry = tk.Entry(width=50)
file_path_entry.grid(column=1, row=0)
select_file_button = tk.Button(text="Select", command=select_file)
select_file_button.grid(column=2, row=0)
convert_button = tk.Button(text="Convert", command=convert_file)
convert_button.grid(column=1, row=1)
result_label = tk.Label(text="")
result_label.grid(column=1, row=2)
window.mainloop()
```
这个程序有一个文本框和两个按钮。点击第一个按钮会打开一个文件选择对话框,让用户选择要转换的 PDF 文件并将其路径显示在文本框中。点击第二个按钮会将选定的 PDF 文件转换为 PPTX 文件并将其保存到当前文件夹中,转换成功后会在窗口下方显示“File converted successfully!”消息。如果用户没有选择文件,程序会提示用户先选择文件。
阅读全文