[ dejan @ 18.05.2007. 14:29 ] @
Molim za pomoc...
[ X Files @ 18.05.2007. 15:18 ] @
Win32 API: SetFileTime()
http://msdn2.microsoft.com/en-us/library/ms724933.aspx

Primer:
http://msdn2.microsoft.com/en-us/library/ms724205.aspx
Code:

BOOL SetFileToCurrentTime(HANDLE hFile)
{
    FILETIME ft;
    SYSTEMTIME st;
    BOOL f;

    GetSystemTime(&st);              // gets current time
    SystemTimeToFileTime(&st, &ft);  // converts to file time format
    f = SetFileTime(hFile,           // sets last-write time for file
        (LPFILETIME) NULL, (LPFILETIME) NULL, &ft);

    return f;
}

[ dejan @ 18.05.2007. 19:12 ] @
Hvala na primerima... samo zaboravio sam da kazem da bi mi trebalo za pod Linux-om...
[ dejan @ 22.05.2007. 09:55 ] @
utime radi posao :)