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
Ron Rogers Jr. wrote:
> I have this line of code that's written with Linux in mind:
>
> path_to_nethack_logfile = os.popen("locate logfile | grep
> nethackdir").read()
>
> and I'm wanting a Windows equivalent, any suggggestions?
>
>
> Thanks.
>
> CronoCloud (Ron Rogers Jr.)
--
http://mail.python.org/mailman/listinfo/python-list