list directories : Os : Buildin Module PYTHON TUTORIALS


PYTHON TUTORIALS » Buildin Module » Os »

 

list directories


import os
import os.path

sPath = raw_input("Enter the path: ")
if sPath[len(sPath)-1!= '\' :
    sPath += '\'

eList = os.listdir(sPath)
for e in eList :
    if os.path.isdir(sPath + e:
        print "Directory: " + e



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Buildin Module
» Os