From: Mats W. <ma...@la...> - 2001-08-06 20:16:15
|
At 12:47 PM 8/6/2001 -0400, you wrote: >I tried your suggestions with no impact. I was not able to "touch" the .py >files since I am on W2k and do not know the equivalent command, it there is >one. A little Python can take care of the touch part. To "touch" a file use os.utime, as in: now = time.time() os.utime(pathname, (now, now)) Not in Jython, though. Mats |