ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / External file functions
  • Equivalence and execution speed
  • Handling errors
  • Operating mode in the different operating systems
  • Operating mode in Windows Vista (and later)
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Returns or modifies the different dates and times associated with a file or directory (date created, modified or accessed).
WINDEVJavaUser code (UMC)
// Récupération de la date et heure de modification d'un fichier
ResDate = fDateTime("C:\MesRépertoires\Fichier.txt", "", fModify)
Syntax
<Result> = fDateTime(<Path of file / directory> [, <New date and time> [, <Type of date and time>]])
<Result>: Character string
  • Date and time associated with the file or directory (in YYYYMMDDHHMMSS format),
  • Empty string ("") if an error occurred. To get more details on the error, use ErrorInfo.
<Path of file / directory>: Character string
  • Name and full or relative path of the file (up to 260 characters).
  • Full (or relative) path of directory (up to 260 characters). If this parameter corresponds to a directory name, this name may (or may not) end with "\". A UNC path can be used.
<New date and time>: Optional character string
  • Modification of a date and time: new date and time for the file/directory (in YYYYMMDDHHmmSS format).
  • Read date and time: empty string ("").
<Type of date and time>: Optional constant
Specifies the date and the time to use:
fAccessDate and time of last access to the file or directory.
Java This constant is not available.
fCreationDate and time of file/directory creation.
Linux The creation date of a file or directory cannot be modified.
Java This constant is not available.
fModify
(Default value)
Date and time of last modification made to the file/directory.

Java Only files with a date later than January 1, 1970 can be modified.
Remarks

Equivalence and execution speed

fDateTime is equivalent to fDate and fTime used successively. However, fDateTime is faster.

Handling errors

fDateTime throws an error in the following cases:
  • the specified file is opened or the file is locked by another application,
  • the specified file or directory does not exist,
  • the name of the specified file is invalid,
  • the year of one of the file dates is before 1980,
  • the format of <New date and time> is incorrect.
  • ...

Operating mode in the different operating systems

The date and time of a file or directory cannot be modified under the following systems: Windows 98, Windows ME.
Linux The creation date and time of a file or directory cannot be modified.
Java Only files with a date later than January 1, 1970 can be modified.
WINDEVJavaUser code (UMC)

Operating mode in Windows Vista (and later)

If this function does not work properly in Windows Vista (and later), check whether the file or directory used is not in one of the system directories (Windows directory or "Program Files" directory).
In Windows Vista (and later), with the UAC mechanism (User Account Control) enabled, you must have administrator privileges to handle and/or modify the files or directories in system directories (Windows directory or "Program Files" directory).
Programming tip: If you need to manipulate / modify files or directories, without needing administrator privileges, it is advisable:
  • avoid writing to the Windows directory or to the "Program Files" directory,
  • use the system directory of the application (returned by SysDir with the srAppDataCommun constant, for example).
Component: wd300std.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help