Needing a WinXP Python variant of a line of code

Ron Rogers Jr. CronoCloud at mchsi.com
Mon Jan 30 19:51:40 EST 2006


John Zenger wrote:
> import os, os.path
> 
> path_to_nethack_logfile = ""
> for root, dirs, files in os.walk("c:\\"):
>     if 'nethackdir' in root:
>         logs = [x for x in files if 'logfile' in x]
>         if len(logs) > 0:
>             path_to_nethack_logfile = os.path.join(root, logs[0])
>             exit
> 

Thank you.  I guess I should do more reading, since I hadn't read about 
os.walk yet. I shouldn't even be trying to do what I'm doing so early in 
my learning. It will eventually be a Nethack logfile parse script.


CronoCloud (Ron Rogers Jr.)



More information about the Python-list mailing list