怎么打开文件夹python
时间: 2024-10-13 17:16:45 浏览: 19
批量添加文件夹python
在Python中,你可以使用`os`模块结合`open()`函数来打开文件夹,但通常不是直接打开,而是通过操作其内部的文件。以下是如何实现这个过程的一个示例:
```python
import os
# 指定要打开的文件夹路径
folder_path = r'C:\Users\Aydan\Desktop\RTHPython\Years'
# 使用os.listdir()获取文件夹内的文件和子文件夹名称
for item in os.listdir(folder_path):
full_item_path = os.path.join(folder_path, item)
if os.path.isdir(full_item_path): # 如果是子文件夹
print(f"发现子文件夹: {full_item_path}")
else: # 如果是文件
print(f"发现文件: {full_item_path}")
# 或者使用tkinter来让用户选择文件夹(如果需要GUI)
import tkinter as tk
from tkinter import filedialog
root = tk.Tk()
root.withdraw() # 隐藏主窗口
folder_path = filedialog.askdirectory() # 弹出对话框选择文件夹
if folder_path: # 判断是否有选择
print(f"选择了文件夹: {folder_path}")
```
阅读全文