trying to check the creation date of a file

2007-04-04 Thread Geoff Bjorgan
Nice goingÂ…way to help! gb -- http://mail.python.org/mailman/listinfo/python-list

trying to check the creation date of a file

2005-08-19 Thread David Fickbohm
People, I am trying to determine the creation date of files in a folder. I am using the following code to find the folder and confirm that files exist in the folder. If someone could give me an idea how to check a creation date it would be appreciated. Thanks dave def delete_old_files

Re: trying to check the creation date of a file

2005-08-19 Thread Larry Bates
use os.stat docs are here: http://docs.python.org/lib/module-stat.html Larry Bates David Fickbohm wrote: People, I am trying to determine the creation date of files in a folder. I am using the following code to find the folder and confirm that files exist in the folder. If someone could

Re: trying to check the creation date of a file

2005-08-19 Thread John Machin
David Fickbohm wrote: People, I am trying to determine the creation date of files in a folder. I am using the following code to find the folder and confirm that files exist in the folder. Presumably you meant intend to use the following pseudocode (not am using the following code) --