|
Re: Problems with SetFTime
|
Veit Kannegieser
|
Mar 09, 2004 06:49 PST
|
Ewald Caspari wrote:
| | I realized that the timestamp doesn't change.
|
At least in OS/2, you have to open the file in write mode,
if you use
Reset(f); { Reopen file for reading }
SetFTime(f,ftime);
the program is not allowed to set the timestamp.
This works:
TextModeRead:=$02;
Reset(f); { Reopen file for reading }
SetFTime(f,ftime);
Other hint: use the VpSysLow.SysFileCopy function.
Veit Kannegieser
|
|
 |
|