Re: date & time from server problem/question

2006-05-17 Thread John W. Krahn
Graeme McLaren wrote: > Hi there, I decided that it would be a good idea to 'touch' the file > immediately after creating it and changing the modified date to the > current date, however its just not working for me. > > > change file permissions and 'touch' the file: > > system("chmod 777 "filep

Re: date & time from server problem/question

2006-05-17 Thread Graeme McLaren
nd Sub From: "Graeme McLaren" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] CC: beginners@perl.org Subject: Re: date & time from server problem/question Date: Wed, 17 May 2006 09:30:59 +0100 MIME-Version: 1.0 X-Originating-IP: [62.254.183.162] X-Originating-Email: [EM

Re: date & time from server problem/question

2006-05-17 Thread Graeme McLaren
; <[EMAIL PROTECTED]> To: "Graeme McLaren" <[EMAIL PROTECTED]> CC: beginners@perl.org Subject: Re: date & time from server problem/question Date: Thu, 11 May 2006 10:43:09 -0700 MIME-Version: 1.0 Received: from lists.develooper.com ([63.251.223.186]) by bay0-mc3-f3.bay0.hotma

RE: date & time from server problem/question

2006-05-11 Thread Timothy Johnson
If the server is a Windows server you can use the Win32::FileTime module to get the info you need. -Original Message- From: Graeme McLaren [mailto:[EMAIL PROTECTED] Sent: Thursday, May 11, 2006 9:55 AM To: beginners@perl.org Subject: date & time from server problem/question Hi

Re: date & time from server problem/question

2006-05-11 Thread Tom Phoenix
On 5/11/06, Graeme McLaren <[EMAIL PROTECTED]> wrote: Hi all, I'm trying to get the date & time a file was created on the server, I RTFM and I found: 10 ctimeinode change time (NOT creation time!) in seconds since the epoch It looks as if you've found the correct FM. There are three times

date & time from server problem/question

2006-05-11 Thread Graeme McLaren
Hi all, I'm trying to get the date & time a file was created on the server, I RTFM and I found: 10 ctimeinode change time (NOT creation time!) in seconds since the epoch http://www.xav.com/perl/lib/Pod/perlfunc.html#item_stat How can I get the date & time of files from the server? Ch