+2003-01-06 Vince Darley <vincentdarley@sourceforge.net>
+ * library/ftpvfs.tcl: allow 'file mtime' to set the modified
+ time of a file, if the ftp package supports it.
+
2002-12-24 Vince Darley <vincentdarley@sourceforge.net>
* library/ftpvfs.tcl: set the 'size' element in stat calls.
(Bug reported on comp.lang.tcl).
}
proc vfs::ftp::utime {fd path actime mtime} {
- error "Can't set utime"
+ # Will throw an error if ftp package is old and only
+ # handles 2 arguments. But that is ok -- Tcl will give the
+ # user an appropriate error message.
+ ftp::ModTime $fd $path $mtime
}