Click or drag to resize

FTime Function

X#
Return the time stamp of the file found by FFCount(), FFirst(), or FNext().

Namespace:  XSharp.Core
Assembly:  XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax
 FUNCTION FTime() AS STRING
Request Example View Source

Return Value

Type: String
Remarks
Examples
This example uses FTime() to find out what time the files were last updated:
X#
1// Find the first file matching *.txt
2? FFirst("*.txt", FC_NORMAL)            // TRUE
3? FTime()                                // 13:18:26
4// Get the next file matching *.txt
5? FNext()                                // TRUE
6? FTime()                                // 17:53:06
See Also