FDate Function |
|
Namespace: XSharp.Core
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