Python 如何获取桌面全部文件
时间: 2024-03-21 18:14:42 浏览: 40
python获取目录下所有文件的方法
你可以使用 Python 的 `os` 模块来获取桌面全部文件。下面是一个获取桌面全部文件的示例代码:
```python
import os
desktop_path = os.path.join(os.path.expanduser("~"), "Desktop")
all_files = []
for root, dirs, files in os.walk(desktop_path):
for file in files:
all_files.append(os.path.join(root, file))
print(all_files)
```
这个代码首先获取了当前用户的桌面路径,然后使用 `os.walk` 函数遍历整个桌面目录,将所有文件的绝对路径添加到 `all_files` 列表中。最后打印出 `all_files` 列表即可。
阅读全文