How can we get the last accessed date and the last modified date of a file using VB6
Last Accessed Date and Last Modified Date
Collapse
X
-
Originally posted by mariyanaHow can we get the last accessed date and the last modified date of a file using VB6
Is the file located on a remote directory on the ftp server.
-ansuman sahu -
Look up FileSystemObjec t in your online help. The FSO model allows you to access a lot of information about files through the properties of the File object. Specifically of interest to you would be the DateLastModifie d and DateLastAccesse d properties.Comment
Comment