> def isGrowing(f, timeout):
>         ssize = os.path.getsize(f)
>         time.sleep(timeout)
>         esize =os.path.getsize(f)
>         return esize != ssize
> 
> On windows, this returns the size of the file as it _will be_, not the
> size that it currently is. 

Why do you say that? It most definitely returns what the size currently
is, not what it will be in the future (how could it know, anyway).

Regards,
Martin
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to