[This is preliminary documentation and is subject to change.]

Called to set the (Windows-Style) file times of a file/dir.

Namespace: Tools.TotalCommanderT
Assembly: Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[CLSCompliantAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public int FsSetTime(
	sbyte* RemoteName,
	_FILETIME* CreationTime,
	_FILETIME* LastAccessTime,
	_FILETIME* LastWriteTime
)
Visual Basic
<CLSCompliantAttribute(False)> _
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Function FsSetTime ( _
	RemoteName As SByte*, _
	CreationTime As _FILETIME*, _
	LastAccessTime As _FILETIME*, _
	LastWriteTime As _FILETIME* _
) As Integer
Visual C++
[CLSCompliantAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
int FsSetTime(
	signed char* RemoteName, 
	_FILETIME* CreationTime, 
	_FILETIME* LastAccessTime, 
	_FILETIME* LastWriteTime
)
F#
[<CLSCompliantAttribute(false)>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
member FsSetTime : 
        RemoteName:nativeptr<sbyte> * 
        CreationTime:nativeptr<_FILETIME> * 
        LastAccessTime:nativeptr<_FILETIME> * 
        LastWriteTime:nativeptr<_FILETIME> -> int 
JScript
JScript does not support APIs that consume or return unsafe types.

Parameters

RemoteName
Type: System..::..SByte*
Name of the file/directory whose attributes have to be set
CreationTime
Type: _FILETIME*
Creation time of the file. May be NULL to leave it unchanged.
LastAccessTime
Type: _FILETIME*
Last access time of the file. May be NULL to leave it unchanged.
LastWriteTime
Type: _FILETIME*
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.

Remarks

This function is called by Total Commander and is not intended for direct use

See Also