Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个将文件夹路径作为参数接收的函数。我希望她将文件夹内的内容添加到字典中(如 CMD 中的 dir)
我怎样才能做到这一点 ?
提前谢谢你,伊利亚
import os print os.listdir('/tmp')
类似主题:
Python中的目录列表
另外,我在操作文件系统路径时经常使用os.path和glob。你可能想检查一下。