cvs commit: perlfaq perlfaq5.pod
[email protected] (Robert Spier) 14 Dec 2004 16:36:20 -0000
| Newsgroups | perl.cvs.perlfaq |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 04/12/14 08:36:20 Modified: . perlfaq5.pod Log: Change 23647 by merijn@merijn-l1 on 2004/12/14 07:51:43 Subject: [perl #3274] [PATCH] Documentation for utime should be improved Date: 14 Dec 2004 06:29:23 -0000 From: "Steve Peters via RT" <[email protected]> Message-ID: <[email protected]> Revision Changes Path 1.32 +9 -4 perlfaq/perlfaq5.pod Index: perlfaq5.pod =================================================================== RCS file: /cvs/public/perlfaq/perlfaq5.pod,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- perlfaq5.pod 7 Feb 2004 04:29:50 -0000 1.31 +++ perlfaq5.pod 14 Dec 2004 16:36:20 -0000 1.32 @@ -1,6 +1,6 @@ =head1 NAME -perlfaq5 - Files and Formats ($Revision: 1.31 $, $Date: 2004/02/07 04:29:50 $) +perlfaq5 - Files and Formats ($Revision: 1.32 $, $Date: 2004/12/14 16:36:20 $) =head1 DESCRIPTION @@ -684,9 +684,14 @@ Error checking is, as usual, left as an exercise for the reader. -Note that utime() currently doesn't work correctly with Win95/NT -ports. A bug has been reported. Check it carefully before using -utime() on those platforms. +The perldoc for utime also has an example that has the same +effect as touch(1) on files that I<already exist>. + +Certain file systems have a limited ability to store the times +on a file at the expected level of precision. For example, the +FAT and HPFS filesystem are unable to create dates on files with +a finer granularity than two seconds. This is a limitation of +the filesystems, not of utime(). =head2 How do I print to more than one file at once?