FileGetLastWriteTime - method of the Pm object
Description:
Returns the last write time into the file.
Syntax:
Date FileGetLastWriteTime(String sFile)
Parameters:
sFile | (String) The file name with the path.
If a full path is not entered, then it is completed relative to the application folder.
It is recommended to use the PROMOTIC path syntax - see PROMOTIC path to files or folders. |
---|
Return value:
Returns the time of last write or (if the file does not exist or is not accessible) the zero value.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var tFileTime = Pm.FileGetLastWriteTime("#data:file.txt");
if (tFileTime)
{
// File exists and the FileTime contains the time of last write
}
else
{
// File does not exist or is not accessible
}
Dim tFileTime
tFileTime = Pm.FileGetLastWriteTime("#data:file.txt")
If tFileTime Then
' File exists and the FileTime contains the time of last write
Else
' File does not exist or is not accessible
End If