- Code: Select all Expand view RUN
- #include "fileio.ch"
#include "fivewin.ch"
function main()
set date to italian
set century on
test()
return nil
function test()
local cApp := "c:\windows\explorer.exe" //cFileName(GetModuleFileName(GetInstance()))
local hFile2
local dFecha := FileDate( cApp )
local tHora := FileTime( cApp )
msgalert(cvaltochar(dFecha)+CRLF+CRLF+cValtochar(thora))
hFile2 := FOpen( "fecha.prg", FO_READWRITE )
SetFTime( hFile2, tHora, dFecha )
FClose( hFile2 )
dFecha := FileDate( "fecha.prg" )
tHora := FileTime( "fecha.prg" )
msgalert(cvaltochar(dFecha)+CRLF+CRLF+cValtochar(thora), " de fecha.prg ")
return nil
No actualiza la hora de fecha.prg, el ejemplo anterior.
Muchas gracias.