FsSetTime
FsSetTime is called to set the (Windows-Style) file times of a file/dir.
 
Declaration:
 
BOOL __stdcall FsSetTime(char* RemoteName, FILETIME *CreationTime, FILETIME *LastAccessTime, FILETIME *LastWriteTime);
 
Description of parameters:
 
RemoteName Name of the file/directory whose attributes have to be set
 
CreationTime Creation time of the file. May be NULL to leave it unchanged.
 
LastAccessTime Last access time of the file. May be NULL to leave it unchanged.
 
LastWriteTime Last write time of the file. May be NULL to leave it unchanged. If your file system only supports one time, use this parameter!
 
 
Return value:
Return TRUE if successful, FALSE if the function failed. Do NOT export this function if it isn't supported by your plugin!