How to list directory using Python
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
how to list all files of a directory in python
如何使用python列出所有目录内容并将其添加到列表中?
使用Python,有很多方法可以做到这一点,但是,这是我知道的最简单的方法。
关于输出的细节,请查看注释。
1 2 3 4 5 | from os import listdir list = listdir("C:\Users\Hello\World\Python Programs") print list #Outputs the whole list print len(list) #Checks for the length of the list print list[26] #Outputs a specific element in the list |
好运!