如何使用Python列出目录

时间:2012-09-22 07:30:47

标签: python list directory

  

可能重复:
  how to list all files of a directory in python

如何使用python列出所有目录内容并将其添加到列表中?

1 个答案:

答案 0 :(得分:3)

使用Python,有很多方法可以做到这一点,这个是我所知道的最简单的方法。

请检查有关输出细节的注释。

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
祝你好运!