Click or drag to resize

FDate Function

X#
Return the date 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 FDate() AS DateTime
Request Example View Source

Return Value

Type: DateTime
Remarks
Examples
This example uses FDate() to find out when files were last updated:
X#
1// Find the first file matching *.txt
2IF FFirst("*.txt", FC_NORMAL)
3    ? FDate()                    // 08/13/98
4ENDIF
5// Next file matching *.txt
6IF FNext()                
7    ? FDate()                    // 08/21/98
8ENDIF
See Also