Re: File list from listdir or shell?

2005-05-26 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > Unluckily, to capture the stdout I have to redirect it to a file... > I hoped that this could work ... > lF=sys.stdin.readline(os.system("ls -1 *.py")) hint: look up "os.popen" and "subprocess" in the library reference. -- http://mail.python.org/mailman/listinfo/p

Re: File list from listdir or shell?

2005-05-26 Thread Thomas Guettler
Am Thu, 26 May 2005 06:31:40 -0700 schrieb qwweeeit: Hi, > ls -1 *.py (for the filenames only) or This can be done with the module "glob" of the standard library. HTH, Thomas -- Thomas Güttler, http://www.thomas-guettler.de/ -- http://mail.python.org/mailman/listinfo/python-list

File list from listdir or shell?

2005-05-26 Thread qwweeeit
Hi all, to obtain a file list from a dir you can use: import os, sys try: . sExtension=sys.argv[1] . sPath=sys.argv[2] except: . sExtension="" . sPath='.' lF=os.listdir(sPath) # to remove from the list also the names of backup files lF=filter(lambda lF: '~' not in lF and sExtension in lF,lF