Cong Ma wrote:
> Dear all,
> 
> Can you give me some hint on getting a directory file descriptor in Python?
> Besides, what's good about os.fchdir() if I can't get a directory fd in the
> first place?
> 
> Thanks for your reply.
> 
> Regards,
> Cong.
> 

for each in os.listdir(os.getcwd()):
  print each

Roger.
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to