Re: Checking a file's time stamp -- followup

2008-08-12 Thread Rob Weir
On 13 Aug 2008, Virgil Stokes wrote: > Is it possible to change the time stamp of a file (Win2K platform)? If > yes, how? os.utime, http://docs.python.org/lib/os-file-dir.html. -- -rob -- http://mail.python.org/mailman/listinfo/python-list

Re: Checking a file's time stamp -- followup

2008-08-12 Thread Virgil Stokes
Christian Heimes wrote: William Purcell wrote: Hi all, I am wanting to check to see the last time a file was edited. For example, I have a directory containing two text files, file1.txt and file2.txt. I want to be able to process these files but only if they have been edited since the last

Re: Checking a file's time stamp.

2008-08-12 Thread Larry Bates
Christian Heimes wrote: William Purcell wrote: Hi all, I am wanting to check to see the last time a file was edited. For example, I have a directory containing two text files, file1.txt and file2.txt. I want to be able to process these files but only if they have been edited since the last t

Re: Checking a file's time stamp.

2008-08-12 Thread William Purcell
Message- > From: [EMAIL PROTECTED]: > python-list-bounces+edwin.madari = > [EMAIL PROTECTED] Behalf Of William Purcell > Sent: Tuesday, August 12, 2008 1:47 PM > To: Python List > Subject: Checking a file's time stamp. > > > Hi all, > I am wanting to check t

Re: Checking a file's time stamp.

2008-08-12 Thread Edwin . Madari
: Checking a file's time stamp. Hi all, I am wanting to check to see the last time a file was edited. For example, I have a directory containing two text files, file1.txt and file2.txt. I want to be able to process these files but only if they have been edited since the last time they

Re: Checking a file's time stamp.

2008-08-12 Thread Christian Heimes
William Purcell wrote: Hi all, I am wanting to check to see the last time a file was edited. For example, I have a directory containing two text files, file1.txt and file2.txt. I want to be able to process these files but only if they have been edited since the last time they were processed. I

Checking a file's time stamp.

2008-08-12 Thread William Purcell
Hi all, I am wanting to check to see the last time a file was edited. For example, I have a directory containing two text files, file1.txt and file2.txt. I want to be able to process these files but only if they have been edited since the last time they were processed. I think that I want to be a