|
-
Dec 13th, 1999, 11:36 PM
#1
Thread Starter
Junior Member
Anyone know how I can determine the date and time stamp of a file? I need to continue processing after the file has been updated.
Thanks.
-
Dec 13th, 1999, 11:40 PM
#2
_______
Private Sub Form_Load()
Dim x
x = FileDateTime("C:\my documents\try.txt")
MsgBox x
End Sub
'Wayne
-
Dec 13th, 1999, 11:41 PM
#3
You can use VB's build-in function FileDateTime.
Example:
Dim dtTimeStamp As Date
dtTimeStamp = FileDateTime("C:\MyFile.txt")
------------------
Serge
Software Developer
[email protected]
[email protected]
ICQ#: 51055819
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|